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 trialgaritychapman
7,421 PointsInteractive Website w/ Javascript code challenge help fix my code
What is wrong with my code here:
var fullName = document.getElementById("full_name") ; var lastName = document.getElementByTagName("h1")[1];
1 Answer
Gloria Dwomoh
13,116 PointsThe tag name of lastName is span not h1 and also it is getElements on the tag name. So, change...
var fullName = document.getElementById("full_name") ;
var lastName = document.getElementByTagName("h1")[1];
to
var fullName = document.getElementById("full_name") ;
var lastName = document.getElementsByTagName("span")[1];
garitychapman
7,421 Pointsgaritychapman
7,421 Pointsperfect. Thanks i got stuck!
Gloria Dwomoh
13,116 PointsGloria Dwomoh
13,116 PointsYou are welcome
Zakher Masri
4,415 PointsZakher Masri
4,415 PointsI was confused how the code you posted seemed identical to the one I used in the challenge. Yet the system didn't accept my answer. Turns out "Elements" plural in the "getElementsByTageName". Just an observation, thanks.
Gloria Dwomoh
13,116 PointsGloria Dwomoh
13,116 PointsZakher Masri yeah, that needs to be in plural :) you are welcome.