Event bubbling and capturing in JavaScript.
Event bubbling and capturing are two ways of event propagation in the DOM tree.
Event Bubbling
In the bubbling, the event is "bubbled" up to the DOM tree. so from the targeted element to its parent elements and finally to the root.
Let's check with ...
patelyash.hashnode.dev3 min read