Skip to content Skip to sidebar Skip to footer

Event.stoppropagation() Not Working In Chrome With Jquery 1.7

For some reason clicking the document isn't working in Chrome (the closeQuickView is not being called). The elements are loaded via AJAX and so need to have .on() action (previousl

Solution 1:

Try event.stopImmediatePropagation

Refer documentation

Solution 2:

jquery 1.6.4 suffer the same bug. Resolved using stopImmediatePropagation.

Post a Comment for "Event.stoppropagation() Not Working In Chrome With Jquery 1.7"