Fading images with jQuery
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(); })
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(); })
No comments
Be the first one to comment