🔰event propagation
the process by which the browser decides which objects to trigger event handlers on.

3 phases of event propagation:
(“capturing” phase) occurs before the target handlers are invoked.
target handlers invoked.
(“bubbling” phase) event bubbling.
a handler can stop the event from bubbling by calling event.stopPropagation().
Last updated
Was this helpful?