computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
405 B
5 lines
405 B
Event delegation is a technique where you define an event handler for a particular event as part of the parent element that contains the elements that will actually trigger the event. |
|
|
|
 |
|
|
|
When the event is triggered, it’ll bubble up in the DOM hierarchy until it reaches the parent’s event handler.
|
|
|