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 DOM Scripting By Example Adding and Removing Names RSVP Checkbox

Mihail Mitrevski
seal-mask
.a{fill-rule:evenodd;}techdegree
Mihail Mitrevski
Full Stack JavaScript Techdegree Student 8,430 Points

What is the meaning of the 'change' event on addEvenetListener when we use checkboxes?..

I can't quite understand the meaning of the 'change'..and what if we have more events on the list despite checkboxes..how can we target them?..

1 Answer

Clayton Perszyk
MOD
Clayton Perszyk
Treehouse Moderator 48,723 Points

Change is an event. and when you attach it to an element via addEventListener, you are basically watching to see if that element changes, and if it does run a callback function (i.e. the second argument to addEventListener). If in the case of a checkbox, a user clicks the check box, that causes the change event to be triggered, and the callback function to be run.

So it basically allows you to run code when an input element changes.