https://developer.mozilla.org/en-US/docs/Web/API/Event/stopImmediatePropagation
The stopImmediatePropagation() method of the Event interface prevents other listeners of the same event from being called.
If several listeners are attached to the same element for the same event type, they are called in the order in which they were added. If stopImmediatePropagation() is invoked during one such call, no remaining listeners will be called.
I found the method stopImmediatePropagation()
, it causes me confusion to have several handlers for the same event, and even worse for the same element.
Could you give me a simple example?
Preferably in code please