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 Getting a Handle on the DOM Select by ID

Declare 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!

app.js
// Complete the challenge by writing JavaScript below
let button= document.getElementById('sayPhrase'); 

let input = document.getElementById('phraseText');


button.addEventListener('click', () => {
  alert(input.value);
});
index.html
<!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>

1 Answer

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

Thank you!!!