DEV Community

Discussion on: Event Bubbling and Event Capturing in Javascript

Collapse
 
mdhesari profile image
Mohammad Fazel

Great article!

Also consider times when we only want child event to be triggered by using stopPropagation() on event object.

e => e.stopPropagation()