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 trial
Riccardo Marotta
10,875 PointsJquery image rollover
Hi, i have a problem with jquery. I wrote that script to create and effect on the mouseover to change the image and switch it back on the mouseleave. How can i add a little fade?
$("#header_1").mouseenter(function(){
$(this).attr('src','/img/header_1_hover.jpg');
}).mouseleave(function(){
$(this).attr('src','/img/header_1.jpg');
});
1 Answer
Justin Horner
Treehouse Guest TeacherHello Riccardo,
Take a look at the following jQuery functions for fade animations. I believe this will help you accomplish what you want to do.
I hope this helps.