Fading images with jQuery

0Comments

All you have to do to implement this jQuery, is put an image inside a div with an ID of someImage.

$("#someImage").hover(function(){
 
    $(this).find("img").fadeOut();
 
}, function() {
 
    $(this).find("img").fadeIn();
 
})