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

What in the F

this doesn't make any sense

Can you share your code? So we can better see what's wrong

1 Answer

Hi John!

The task is to target DOM elements and assign them to the respective variables. In this case/instance, you can ignore the event listener function. The directions don't ask you to do anything with it. It doesn't really need to be there.

This passes both:

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

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

More info:

https://www.w3schools.com/jsref/met_document_getelementbyid.asp

https://www.w3schools.com/jsref/met_document_getelementsbyclassname.asp

https://www.w3schools.com/jsref/met_document_queryselector.asp

https://www.w3schools.com/jsref/met_document_queryselectorall.asp

I hope that helps.

Stay safe and happy coding