Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Am I using a delegated event?

ul.addEventListener("click", (e) => { console.log("Hello!"); });

1 Answer

Steven Parker
Steven Parker
243,266 Points

Assuming "ul" represents an unordered list which has some items, then yes, that handler will respond to clicks on the items as well as on the list itself. It might be hard to see difference since it prints out the same thing each time.

But you could make this change and it would be more obvious:

ul.addEventListener("click", e => console.log(e.target.tagName));