jQuery/JS Common - Object Structures - Event - Methods
Methods that control the event.
isDefaultPrevented()
Checks if the preventDefault() method was called on this event object.
Return Value:
true if preventDefault() was called, false otherwise.
isImmediatePropagationStopped()
Checks if the stopImmediatePropagation() method was called on this event object.
Return Value:
true if stopImmediatePropagation() was called, false otherwise.
isPropagationStopped()
Checks if the stopPropagation() method was called on this event object.
Return Value:
true if stopPropagation() was called, false otherwise.
stopImmediatePropagation()
Stops the event's propagation up the DOM tree, preventing the rest of the handlers from being executed.
See Also
stopPropagation()
Stops the event's propagation up the DOM tree, keeping parent handlers unnotified of the event.
See Also
Feedback