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 trialJohn San Pietro
6,870 PointsWhat in the F
this doesn't make any sense
1 Answer
Peter Vann
36,427 PointsHi 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
Zaid Khan
12,769 PointsZaid Khan
12,769 PointsCan you share your code? So we can better see what's wrong