isDefaultPrevented()
Checks if the preventDefault() method was called on this event object.
Return Value:
isImmediatePropagationStopped()
Checks if the stopImmediatePropagation() method was called on this event object.
Return Value:
isPropagationStopped()
Checks if the stopPropagation() method was called on this event object.
Return Value:
stopImmediatePropagation()
Stops the event's propagation up the DOM tree, preventing the rest of the handlers from being executed.
Feedback