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

Marcos Gonzales
Marcos Gonzales
3,688 Points

Why are we using getElementsByTagName instead of querySelector? Is there a valid reason?

I am curious if there is a reason why because both of them work.

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You're correct that they both work. However, a querySelector is best used for really tricky selections of the DOM and getElementsBy... is better when used for simpler selections. The querySelector has a bit of additional parsing by the browser under the hood which can have a bit of a performance cost associated with it.

Here is a very simple jsperf test that I made where you can test the performance cost on a simple selection. You might also be interested in reading another discussion about this on this thread.

Hope this helps! :sparkles: