In this post, we will see event bubbling and event catpuring
Event Bubbling:
- Event bubbling is propagation of an event from the innermost element to the outermost element
- Please go through the below post for more details
Please go thorough this post for more details : https://www.javasavvy.com/javascript-event-bubbling-example/
Event Capturing:
- Event capturing refers to the propagation of an event from the outermost element to the innermost element.
- Please go through below post for more details
Please go through this post for more details: https://www.javasavvy.com/javascript-event-capturing-example/
Thanks for Reading