Event Bubbling and Delegation
Event bubbling means an event starts from the target element and moves up through its parent elements.
Event delegation means adding one listener to a parent and using it to handle events from child elements.
Event bubbling means an event starts from the target element and moves up through its parent elements.
Event delegation means adding one listener to a parent and using it to handle events from child elements.