Execute the first event handler, and stop the rest of the event handlers from being executed:
The event.stopImmediatePropagation() method stops the rest of the event handlers from being executed.
This method also stops the event from bubbling up the DOM tree.
Tip: Use the event.isImmediatePropagationStopped() method to check whether this method was called for the event.
| Parameter | Description |
|---|---|
| event | Required. The event parameter comes from the event binding function |
Your message has been sent to W3Schools.