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) Making Changes to the DOM Appending Nodes

What does getElementsByTagName do?

I understand getElementsById but just wanted a quick idea of what getElementsByTagName means and does?

Does it select all elements on the page with the same tag/element name?

1 Answer

Blake Larson
Blake Larson
13,014 Points

Yup, it returns a collection of all elements in the document with that specified tag name, as an HTMLCollection (array like list of html elements) object.

So if you wanted the body element of the document you could use

  document.getElementsByTagName("BODY")[0]

Since there is only 1 body tag on the document the node list has a length of 1 or index 0.