This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Immanuel
about 9 years

What is wrong with my code?

What’s up: var main = function(){ $(‘.dropdown-toggle’).click(function(){ $(‘.dropdown-menu’).toggle(); }); $(‘.arrow-next’).click(function(){ var currentSlide = $(‘.active-slide’); var nextSlide = currentSlide.next(); var currentDot = $(‘.active-dot’); var nextDot = currentDot.next(); if(nextSlide.length==0){ nextSlide = $(‘.slide’).first(); nextDot = $(‘.dot’).first(); } currentSlide.fadeOut(600).removeClass(‘active-slide’); nextSlide.fadeIn(600).addClass(‘active-slide’); currentDot.removeClass(‘active-dot’); nextDot.addClass(‘active-dot’); }); $(‘.arrow-prev’).click(function(){ var currentSlide= $(‘.active-slide’); var prevSlide = currentSlide.prev(); if(prevSlide.length == 0){ prevSlide = $(‘.slide’).last(); prevDot = $(‘.dot’).last(); } currentSlide.fadeOut(600).removeClass(‘active-slide’); prevSlide.fadeIn(600).addClass(‘active-slide’); currentDot.removeClass(‘.active-dot’); prevDot.addClass(‘active-dot’); .prev(‘active-dot’); }); } $(document).ready(main);

Answer 5528921cd3292f2e420000b0

-1 votes

Permalink

down at the bottom you have an (.prev(‘active-dot’); i believe you should remove it

currentSlide.fadeOut(600).removeClass(‘active-slide’); prevSlide.fadeIn(600).addClass(‘active-slide’); currentDot.removeClass(‘.active-dot’); prevDot.addClass(‘active-dot’); .prev(‘active-dot’); <= right here }); } $(document).ready(main);

points
Submitted by Alexander Churn
about 9 years