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 trialBakari Lewis
6,556 Pointsstuck!..not sure what is wrong with the method I am using.
Please help. I am not sure what going on here. I am using the "getElementsByTagName" method an the index...
var fullName = document.getElementById("full_name");
var lastName = document.getElementsByTagName("last_name")[1];
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1 id="full_name"><span class="first_name">Andrew</span> <span class="last_name">Chalkley</span></h1>
<script src="app.js"></script>
</body>
</html>
2 Answers
Leyton Parker
6,556 Pointsyou'll want to write it as:
var lastName = document.getElementsByTagName("span")[1];
I was stuck on this challenge too, simple error ugh!
Julian Aramburu
11,368 PointsHi Bakari! When you use getElementByTagName you are supposed to target a TAG like div, p , input, etc... but you are targeting the class "last_name" so that's might be the problem here! What are you trying to do exactly?
Hope it helps you sort the problem out!
Cheers and Keep Coding!
Bakari Lewis
6,556 PointsThanks Julian! That makes sense. I am trying to target the Second Span element
Julian Aramburu
11,368 Pointsyou could try something like getElementByClassName maybe!
Leyton Parker
6,556 Pointsthe code challenge doesn't work when you use getElementsByClassName, they want you to use getElememtsByTagName for some reason.
not sure why, could someone explain this?