Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Munyaradzi 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,726 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,029 PointsDoes anyone else have anything more to say because it has been six days and I've gotten no further.

Jaroslav Bílek
9,412 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.

NAHIMA ABEA
5,728 PointsFor first part... this is what I got:
/const inputValue = document.querySelector('input').value;

lindsey howard
Full Stack JavaScript Techdegree Student 6,933 Pointsit should be
let inputValue = document.getElementById("linkText").value;
soso lili
406 Pointssoso lili
406 Pointsthanks