JQuery Programmer Question:
How to stop the bubbling of an event to parent elements using jQuery?

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 Question | Next Question |
How to set the height of an element using jQuery? | Explain the each() function? |