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 JavaScript and the DOM (Retiring) Responding to User Interaction Event Bubbling and Delegation

Can an event occur on an element without an event listener being attached to it?

.

1 Answer

rydavim
rydavim
18,814 Points

So, I’m not sure there’s a simple answer to your question - it depends on what you mean.

Events are part of the DOM, and every HTML element has a set of events that can trigger JavaScript. So in a sense, a click is still a click, but without a listener it won’t have any code to execute. In a way, you can think of events as things that happen to html elements, and JavaScript can then react.

Hopefully that helps, but let me know if I can help clarify. Happy coding!