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) Making Changes to the DOM Getting and Setting Text with textContent and innerHTML

I tried following along on this and writing the code like it was shown however when I did it, the button will not work

const input=document.querySelector('input');
const p=document.querySelector('p.description');
const button=document.querySelector('button');
button.addEventListener('click',() => {
    p.textContent=input.value;
});

this is a snippet of the code and I was trying to change the description of the list

2 Answers

Alfonso Montano
Alfonso Montano
2,970 Points

Check your html file. Make sure the p tag that has the list description has the description class

<p class="description">Change list description</p>

I checked the html and checked the class and it is correct