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 trialKamontat swasdikulavath
2,447 PointsHow 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
Front End Web Development Techdegree Graduate 18,103 Pointsyour'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
4,806 PointsYou 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