jQuery Click fires twice when clicking on label

I tried adding the solution above by adding:

evt.stopPropagation();
evt.preventDefault();

but didn’t work. However adding this:

evt.stopImmediatePropagation();

solved the problem! 🙂

Leave a Comment