jquery toggle and multiple links
i'm using jquery toggle to show/hide a div on different links. It shows/hides them fine, however if you click on one of the other links before closing the first link toggle, the first div is still shown.
Is there any way of checking if there are any other open toggle events open, if so, close them and then continue with the new toggle ev开发者_开发百科ent? If that makes sense?
My code is:
$("#icons ul li a").toggle(function(){
$(this).addClass("active");
$("#newdiv").show();
}, function() {
$(this).removeClass("active");
$("#newdiv").hide();
});
You can use the :visible
selector along with the divs you are toggling.
$('.mydiv:visible').hide();
精彩评论