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

henry duquesnay
henry duquesnay
6,976 Points

Do 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?

Eric M
Eric M
11,545 Points

Hi Henry,

Which question are you having trouble with and what answer are you trying?

Cheers,

Eric

henry duquesnay
henry duquesnay
6,976 Points

How 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
Sean T. Unwin
28,690 Points

Hi 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];