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 trialDaniel Bowman
4,002 PointsNo matter which way I put in the answer it says I'm wrong.
I have tried to answer this many ways and no matter what I do it does not work. i have tried: const inputValue = document.getElementById("linkName").value;
const inputValue = document.querySelectorAll('input'); inputValue.value;
const inputValue = document.getElementsByTag('input').value
and many other ways nothing works for me
var inputValue = document.getElementById("linkName").value;
<!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
jb30
44,806 PointsTry changing "linkName"
to "linkText"
to match the id of the input element.
document.querySelectorAll
returns a NodeList and document.getElementsByTagName
returns an HTMLCollection. You can specify that you want the first element by using [0]
or by using document.querySelector
instead.
Daniel Bowman
4,002 PointsDaniel Bowman
4,002 PointsAhhhh... my bad lol thank you