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 trialrichi rivas
370 PointsHide/show the text inside the #helpText span element when the user's mouse passes over the text "How are these ran
Hello, I made a solution like the teacher notes but it only works when I clicked over the span even when I selected 'mouseover':
$('#helpText').on('mouseover', function(){
$('#helpText span').toggle();
});
What is wrong?
2 Answers
Steven Parker
231,248 PointsAdam makes a good point, errors aren't always where you expect them. It helps to have the whole code to look at.
You can share the entire project easily by using the "snapshot" function in the workspace and posting the link it gives you.
Oleg Mogytych
10,684 PointsHi,
I upgraded the JS in this way so it appears and hides after mouseleave
$('#helpText').on('mouseover mouseleave', function(){
$('#helpText span').toggle();
});
Adam Beer
11,314 PointsAdam Beer
11,314 PointsThis is the good code! There may be an error in your html code.