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 Practice Selecting Elements

Help with this challenge

¿Can someone help me with the solution to this problem?

Did you try anything so far?

i can't see the markup, if you can show me a little of the markup i'll be able to help ;)

1 Answer

In each step you have to select all elements. I think querySelectorAll() will be most suitable.

Also remember that in the parethesis you can use dome traversing

e.g

const links = document.querySelectorAll(`div a`);

which will select all anchor elements which are inside div element. remember if you want to catch element by class or id to use . or # before class/id name.