Posts by Anderson AL • 11 points
1 post
-
1
votes2
answers113
viewsA: How to make two events not fire at the same time
Try placing the e.stopImmediatePropagation() code in this form: $("#btn-menu").click(function (e){ e.stopImmediatePropagation(); }); So the other functions will stop running automatically.…