Reputation: 12530
I'm using
$("#termsLink").click(function(){
$("termsWrap").toggle();
alert();
});
to try and toggle an element that is set to display: none;
by default. The alert()
is triggered but the display
doesn't set to block
. I can't figure out what is going wrong.
Upvotes: 0
Views: 46