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

Since when is input a child of label? They are written out as siblings in HTML.

.

4 Answers

Steven Parker
Steven Parker
229,744 Points

Assuming the "input" you're talking about is the checkbox, it is attached to the DOM as a child of the label on line 15:

  label.appendChild(checkbox);

And these elements are dynamically created by the JavaScript and do not exist in the HTML code.

.

Steven Parker
Steven Parker
229,744 Points

It's also not the case here. It's the input that is the child of the label.

.

Steven Parker
Steven Parker
229,744 Points

The advantage of making the input be the child of the label is that it allows you to click on the label text to change the state of the checkbox.

When they are created as siblings, you can only change the state by clicking directly on the box.

.

Steven Parker
Steven Parker
229,744 Points

Event propagation ("bubbling") goes from child to ancestor(s). This is different because a click on the label (parent) changes the state of the checkbox (child).

This special action of a label can also be used on peers (siblings) by using the "for" attribute of the label.