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

banner
Close banner
0 points
Submitted by Abu-Bakr
over 9 years

(SOLVED) What is the answer

Here is my code:

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();
    var nextSlide = currentSlide.next();
    var currentDot = $('.active-dot');
    var nextDot = currentDot.next();

    if(nextSlide.length == 0) {
        nextSlide = $('.slide').first();
    }

    currentSlide.fadeOut(600).removeClass('active-slide');
    nextSlide.fadeIn(600).addClass('active-slide');

    currentDot.removeClass('.active-dot');
    nextDot.addClass('.active-dot');
});

$(document).ready(main);

it doesn’t work! can someone give me the answer?

Answer 5477828d7c82ca3a630046be

3 votes

Permalink

sorry here is the answer

    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');
    });
};
$(document).ready(main);
points
Submitted by Abu-Bakr
over 9 years

4 comments

bobbymagee over 9 years

Many Thanks Zafar, My code looked like yours but did not ,work but when i copied and pasted it did the job.

Abu-Bakr over 9 years

You are absolutely welcome!

jembanz about 9 years

Got the same problem, thanks

erynh almost 9 years

This didn’t work for me