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 trialKarl Russell Sumando Menil
Full Stack JavaScript Techdegree Student 4,004 Pointsmy code is not working, thank you in advance for your help
const toggleList = document.getElementById('toggleList'); const listDiv = document.querySelector('.list'); const input = document.querySelector('input'); const p = document.querySelector('p.description'); const button = document.querySelector('button');
toggleList.addEventListener('click', () => {
if (listDiv.style.display == 'none') {
toggleList.textContent = 'Hide list';
listDiv.style.display = 'block';
} else {
toggleList.textContent = 'Show list';
listDiv.style.displsy = 'none';
}
});
button.addEventListener('click',() => { p.innerHTML = input.value + ':'; });
p.title = "List description";
1 Answer
Lisa Walters
Front End Web Development Techdegree Graduate 15,255 PointsHello Karl Russell Sumando Menil! I bet that you have already found this out, but you have misspelled "display" in the 7th line of code that you have posted above. Your code worked for me when I fixed this. Good luck!
Lisa Walters
Front End Web Development Techdegree Graduate 15,255 PointsLisa Walters
Front End Web Development Techdegree Graduate 15,255 PointsAlso, as suggested, add the .description to those class definitions so that the list can toggle correctly. Hope this helps!
Karl Russell Sumando Menil
Full Stack JavaScript Techdegree Student 4,004 PointsKarl Russell Sumando Menil
Full Stack JavaScript Techdegree Student 4,004 Pointsthank you for your reply Ms.Lisa Walters