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.

Peter Huang
5,426 PointsIm not understanding this question no matter how much I try..
Can someone please provide me the answer so I can continue for the 1/2 challenge? Thank you
const inputValue = document.querySelector('input');
<!DOCTYPE html>
<html>
<head>
<title>DOM Manipulation</title>
</head>
<link rel="stylesheet" href="style.css" />
<body>
<div id="content">
<label for="linkText">Link Text:</label>
<input type="text" id="linkText" value="sample text">
<p class="info"></p>
</div>
<script src="app.js"></script>
</body>
</html>
1 Answer

Steven Parker
221,323 PointsThe question asks you to "Select the <input> element and assign its value to the variable inputValue."
The code you have here selects the element, but what the challenge wants is the value. So this code is most of the answer, you just need to add .value
to get just that property from the element.
Peter Huang
5,426 PointsPeter Huang
5,426 PointsThank you