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

How do you display the value of a link when the link is clicked while there's multiple links in the list?

var menuname = document.querySelector("#nav li a").innerHTML;

  console.log(menuname);
<ul id="nav">
   <li><a href="#anchor1">Anchor 1</a></li>
   <li><a href="#anchor1">Anchor 2</a></li>
   <li><a href="#anchor1">Anchor 3</a></li>
   </ul>

When I click on the second or third list item the first link value displayed in the console. I want to accomplish this without using jQuery.

1 Answer

CSS has a nth-child selector. Here are the details: http://www.w3schools.com/cssref/sel_nth-child.asp

Yes, that's css. How do I get the value of the link like Anchor 1, Anchor 2 or Anchor 3 when the specific link is clicked via javascript?