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
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"