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 trialanthonybrackner
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 :).