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 trialhenry duquesnay
6,976 PointsDo what now? What did i do wrong?
it looked like I answered correctly. not sure what is incorrect. All the previously helped people for this question seem to indicate to me that i guessed correctly. Where'd I mess up?
henry duquesnay
6,976 PointsHow would you select the body
element using document.getElementsByTagName, and store it in the variable body?
(Hint: Don't forget that this method returns a zero-based collection, not a single element.)
const body = getElementsByTagName('body')[0]; (DID NOT WORK?)
1 Answer
Sean T. Unwin
28,690 PointsHi Henry,
You're very close! The only part that is missing is to preface the function call with document
.
The result should be:
const body = document.getElementsByTagName('body')[0];
Eric M
11,546 PointsEric M
11,546 PointsHi Henry,
Which question are you having trouble with and what answer are you trying?
Cheers,
Eric