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 trialAbir Roy
Front End Web Development Techdegree Student 153 Pointsit works even by not adding that for look for LI
In event bubbling and delegation
const listItems = document.querySelector(".list-container ul");
listItems.addEventListener("mouseover",(event)=>{
event.target.textContent= event.target.textContent.toUpperCase();
console.log(event.target.textContent); })
in video you have added for loop with event.target.tagName === "LI"
1 Answer
Steven Parker
231,236 PointsWithout the filter, it is possible to place the mouse where the event will fire and reference the entire list, and change the case of all items at once. Try approaching the list from the left side to see this happen.
The filter restricts the action to only the specific item that the mouse is over.