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 JavaScript and the DOM (Retiring) Making Changes to the DOM Modifying Elements

Select 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');

app.js
var inputValue=document.querySelector('input [input=type]');
index.html
<!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>

thanks

4 Answers

Richard Verbraak
Richard Verbraak
7,739 Points

Hey, 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
Robert Roberson
Courses Plus Student 8,401 Points

Does anyone else have anything more to say because it has been six days and I've gotten no further.

Jaroslav Bílek
Jaroslav Bílek
9,415 Points

I 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.

it should be

let inputValue = document.getElementById("linkText").value;
NAHIMA ABEA
NAHIMA ABEA
5,728 Points

For first part... this is what I got:

/const inputValue = document.querySelector('input').value;