How to stop event bubbling with jquery live?
The short answer is simply, you can’t. The problem Normally, you can stop an event from “bubbling up” to event handlers on outer elements because the handlers for inner elements are called first. However, jQuery’s “live events” work by attaching a proxy handler for the desired event to the document element, and then calling the … Read more