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

Hamzah Iqbal
seal-mask
.a{fill-rule:evenodd;}techdegree
Hamzah Iqbal
Full Stack JavaScript Techdegree Student 11,145 Points

6:10. Create a global variable of li instead of using checkbox.parentNode.parentNode;

The purpose of using checkbox.parentNode.parentNode is clear, but couldn't one just declare the li used in the video as a global variable instead, this way you wouldn't need to use the checkbox.parentNode.parentNode

1 Answer

Steven Parker
Steven Parker
229,644 Points

The DOM traversal is needed because the list item it is referencing is specific to the checkbox just clicked. Since the checkboxes and list items are created dynamically by user interaction, there's nothing initially for a global to reference.

A global would also not be of much use when several checkbox and list items have been created.