Event Bubbling and Capturing
Event Bubbling and Capturing are the two ways for the propagation of events in the DOM tree.
So, if you have a nested element in your HTML. Like,
<div id="parentElement">
<div id="childElement">
</div>
</div>
then if any event is triggered in...
swapnilultron.hashnode.dev3 min read