What is event delegation?
- A Attaching one listener to a parent element and using event.target to identify the source
- B Passing events between functions
- C Delaying event handling
- D Assigning events to a web worker
Answer
Attaching one listener to a parent element and using event.target to identify the source
Delegation reduces the number of listeners and automatically handles elements added later, since the event still bubbles to the ancestor.





