Reputation: 673
Whenever I click the button, it opens twice and then closes.
Why doesn't it just alternate open and close with the proper .5 sec animation?
Upvotes: 1
Views: 373
Reputation: 4001
Try to do it this way:
$(".add-entry").css('display','block').hide();
Upvotes: 3