event.isPropagationStopped() 1.3 Returns whether event.stopPropagation() was ever called on this event object.

This event method is described in the W3C DOM Level 3 specification.

Checks whether event.stopPropagation() was called " + msg + "" ); } $( "button" ).click(function(event) { propStopped( event ); event.stopPropagation(); propStopped( event ); }); ]]> click me
]]>