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

dan cheng
seal-mask
.a{fill-rule:evenodd;}techdegree
dan cheng
Full Stack JavaScript Techdegree Student 11,596 Points

to get body, i was using this and it doesnt work: const body = document.getElementByTagName('body');

i was using this to get body elem and it doesnt work: const body = document.getElementByTagName('body');

1 Answer

Ezra Siton
Ezra Siton
12,644 Points

The getElementsByTagName() method returns a collection of an elements's child elements with the specified tag name, as a NodeList object. The NodeList object represents a collection of nodes. The nodes can be accessed by index numbers. The index starts at 0 (w3schools)

Correct code (Add index)

const body = document.getElementsByTagName("body")[0];

https://www.w3schools.com/jsref/dom_obj_body.asp