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) Getting a Handle on the DOM Selecting by Id

I don't understand this question, what they're asking for.

I'm sorry I can't specify better than that. This is the question: "Select the button with the ID sayPhrase and assign it to the button variable."

js/app.js
var button;
var input;

button.addEventListener('click', () => {
  alert(input.value);
});

button = document.getElementById('sayPhrase');
index.html
<!DOCTYPE html>
<html>
  <head>
    <title>Phrase Sayer</title>
  </head>
  <body>
    <p><input type="text" id="phraseText"></p>
    <p><button id="sayPhrase">Say Phrase</button></p>
    <script src="js/app.js"></script>
  </body>
</html>

2 Answers

Hey Michele, So this step in the challenge just wants you to assign the button variable in your JavaScript to the sayPhrase ID from your HTML page.

It would look like this:

var button = document.getElementById('sayPhrase');

Hope this helps!

Dylan

Thank you!! :)

Emmanuel C
Emmanuel C
10,636 Points

Hey Michele,

You actually did it correctly except, they want you to assign it to the variable they provided, when its declared on line 1, and same on line 2 for next task

Thanks Emmanuel!