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 trialMunyaradzi Gordon Muneka
8,062 PointsSelect the <input> element with the ID linkName and store its value in the variable inputValue.
guys please help i don't know where i'm going wrong my code is:
var inputValue=document.querySelector('#linkName');
var inputValue=document.querySelector('input [input=type]');
<!DOCTYPE html>
<html>
<head>
<title>DOM Manipulation</title>
</head>
<link rel="stylesheet" href="style.css" />
<body>
<div id="content">
<label>Link Name:</label>
<input type="text" id="linkName">
<a id="link" href="https://teamtreehouse.com"></a>
</div>
<script src="app.js"></script>
</body>
</html>
4 Answers
Richard Verbraak
7,739 PointsHey, no worries, I stumbled through this one as well but if you persevere you'll get it!
It should look like this:
var inputValue = document.getElementById("linkName").value;
First you select an element with the ID of linkName. ( You don't need to specifiy it again with a # with elementById) Secondly, they ask you to get it's value, to get the value of that input field you use .value.
If there's anything else you don't get, feel free to comment.
Robert Roberson
Courses Plus Student 8,401 PointsDoes anyone else have anything more to say because it has been six days and I've gotten no further.
Jaroslav Bílek
9,415 PointsI wish the person who assigns these exercises assigned only stuff that was covered in the lessons. It is just a basic pedagogical approach, common sense.
lindsey howard
Full Stack JavaScript Techdegree Student 6,935 Pointsit should be
let inputValue = document.getElementById("linkText").value;
NAHIMA ABEA
5,728 PointsFor first part... this is what I got:
/const inputValue = document.querySelector('input').value;
soso lili
406 Pointssoso lili
406 Pointsthanks