Tagged Questions

0
votes
1answer
37 views

Incorrect Toggling (jQuery)

I've a simple menu on my page, that uses this jquery code for basic toggling: $("#left-nav .block h3").click(function(){ $(this).next("ul").slideToggle("fast"); $(this).toggleClass("active"); ...