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 trialSandrin John
6,297 Pointsthe loop is not working nor does the uppercase and lowercase
const listItems = document.getElementsByTagName('li')[0];
for (let i = 0; i <listItems.length; i+=1){
listItems[i].addEventListener('mouseover', () => {
listItems[i].textContent = listItems[i].textContent.toUpperCase();
});
listItems[i].addEventListener('mouseout', () => {
listItems[i].textContent = listItems[i].textContent.toLowerCase();
});
}
3 Answers
Kieran Barker
15,028 PointsHey buddy, the [0]
at the end of your constant means you're only selecting the first list item — you need to select all of them by removing that part :-)
adityaarakeri
10,653 Pointsconst listItems = document.getElementsByTagName('li');
// removed [0] to select all the "li" elements
for (let i = 0; i <listItems.length; i++){
listItems[i].addEventListener('mouseover', () => {
listItems[i].textContent = listItems[i].textContent.toUpperCase();
});
listItems[i].addEventListener('mouseout', () => {
listItems[i].textContent = listItems[i].textContent.toLowerCase();
});
}
Daniel Salvatori
2,658 Pointsconst listItems = document.getElementsByTagName('li')[0];
you want to select the whole list of li's to loop over, so remove the [0] at the end there