JQuery Programmer Question:

How to stop the bubbling of an event to parent elements using jQuery?

JQuery Programmer Interview Question
JQuery Programmer Interview Question

Answer:

The stopPropagation() method of Event object stops the bubbling of an event to parent elements, preventing any parent handlers from being notified of the event.


Previous QuestionNext Question
How to set the height of an element using jQuery?Explain the each() function?