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 trialHARMANDEEP PANNU
7,136 PointsCan I make text uppercase using listItems.style.textTranform = 'uppercase';
listItems.addEventListener("mouseover", () => {
listItems.style.textTransform = 'uppercase';
})
listItems.addEventListener("mouseout", () => {
listItems.style.textTransform = "lowercase";
})
This is what I meant
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! Yes, you can! And simultaneously, no. I'm assuming here that your listItems
is a collection of list items inside either an ordered or unordered list. Remember, that eventListeners are only available on an individual element, not a collection of elements. So you would need to loop over the collection of list items and add the event listeners that way.
I made a Code Pen which does what I think you want to do. It grabs the collection of list items from the DOM and then iterates over them adding both event listeners to each list item.
Hope this helps!