Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

anthonybrackner
17,776 PointsCode is not working
listDiv.addEventListener('mouseover', (event) => { if (event.target.tagName == 'LI') { event.target.textContent = event.target.textContent.toUpperCase(); } });
listDiv.addEventListener('mouseout', (event) => {
if (event.target.tagName == 'LI') {
event.target.textContent = event.target.textContent.toLowerCase();
}
});
Can anyone tell me what is wrong with this code? The mouseover and mouseout does not work when I preview the page in the browser. From what I can tell, this is exactly the same as the code Guil writes in the video.
2 Answers

anthonybrackner
17,776 PointsYes, the variable has been declared exactly the same way the teacher did it. I spent way too much time trying to find the error and from what I can tell it's the exact same way he coded it. Very frustrating.

tobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 PointsCan you post all the whole code ?

anthonybrackner
17,776 PointsHi Tobias,
I figured out what I was doing wrong. I had finished an event handler on the toggleall code. Thanks again.

tobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 PointsGood Job!
tobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 Pointstobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 PointsDid you name the variable the same way as he did where you add the eventListener to? Would be helpful if you could post the whole code :).