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 Editing and Filtering Names Filter Invitees Who Have Not Responded

karan Badhwar
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
karan Badhwar
Web Development Techdegree Graduate 18,135 Points

Is there nay other way than using the if (li[i].className === 'responded')

Is there any other way to find out that the li[i] element's input checkbox is checked?

1 Answer

Steven Parker
Steven Parker
229,644 Points

Sure, but at this point in the code you only have a reference to the li element and not the checkbox itself. By using DOM traversal, you could get a reference to the checkbox. Then you could examine the checkbox's checked property just like when the class was added by the change event handler.

But since that handler sets the li's class to match the checkbox state, it's much simpler to just check the class here.