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 JavaScript and the DOM (Retiring) Getting a Handle on the DOM Selection Review

Kamontat swasdikulavath
Kamontat swasdikulavath
2,447 Points

How do you select the HTML's Body using document.getElementsByTagName ?

const body = document.getElementsByTagName("body");

this doesn't work, anyone knows the solution?

2 Answers

Antonio English
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Antonio English
Front End Web Development Techdegree Graduate 18,103 Points

your're missing the index value on the body element const body = document.getElementsByTagName("body")[0];

or you could use document.body or document['body'] to access the property of the document object.

Timothy Schmidt
Timothy Schmidt
4,806 Points

You can't use getElementByClassName because body isn't a class, it's the html tag name. You could use document.getElementsByTagName('body') which will return a collection containing the single body element.

Or you could do it the easy way and use document.body