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

Alex G.
Alex G.
10,329 Points

Why not just add Div to HTML?

In the "Filter Invitees Who Have Not Responded" video, we create a new Div element, label and checkbox input via JavaScript.

Why is this better than just creating the elements in HTML? If we know we want this functionality, isn't it better to have it in the HTML structure? Isn't that better web accessibility? Wouldn't it make the JS file easier to read/smaller as well?

1 Answer

Steven Parker
Steven Parker
230,274 Points

These are all design decisions you would make on a real project, but for the purposes of this particular course, implementing it in JavaScript creates opportunities for demonstration and practice with these mechanisms.

It's much easier to learn these in a simple environment, even if it's not the most practical application of them, than in a complex project where they might be seriously needed.