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 trialArya G
Full Stack JavaScript Techdegree Student 10,503 PointsDeclare a variable named button. Assign the variable the <button> element with the ID btn-phrase. Use the method that re
I am not able to figure it out!
// Complete the challenge by writing JavaScript below
let button= document.getElementById('sayPhrase');
let input = document.getElementById('phraseText');
button.addEventListener('click', () => {
alert(input.value);
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Phrase Sayer</title>
</head>
<body>
<p><label for="input-phrase">Type a phrase</label></p>
<p><input type="text" id="input-phrase"></p>
<p><button id="btn-phrase">Say Phrase</button></p>
<script src="app.js"></script>
</body>
</html>
2 Answers
Jason Larson
8,361 PointsYou were close on this one. Rather than putting in the value of the actual phrase, you wanted to get the button element that had that phrase. You are going to get the element by using its ID, which in this case is btn-phrase
. To do that, use this code:
let button = document.getElementById('btn-phrase');
Adane Gebreselasse
3,436 Pointslet button = document.getElementById('btn-phrase');
Arya G
Full Stack JavaScript Techdegree Student 10,503 PointsArya G
Full Stack JavaScript Techdegree Student 10,503 PointsThank you!!!