jquery slidetoggle issue

215 Views Asked by At

i'm having problems with toggling the next div. heres the code:

jsfiddle of my code

what i need to do is: after clicking the next button, it will close the current box_content and open the next one in the order. simple but i can't do it... please help.

2

There are 2 best solutions below

0
On BEST ANSWER
    $(".box_next").click(function() {
        $(".box_content").slideUp();
        $(this).parents(".box").next().find(".box_content").slideDown("fast");
    });
0
On

Change your $('.box_next').click() function to this:

$(".box_next").click(function() {
    $('.box_content').slideUp();
    $(this).parent().parent().next().children(".box_content").slideDown("fast");
});