Description
The event.stopPropagation() method prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.
v1.0
This method has the form:
event.stopPropagation()
Return Value
This form returns nothing
Examples
Kill the bubbling on the click event:
$("p").click(function(event){
event.stopPropagation();
// do something
});