it might be simple but I can't find the solution. Is it possible (in a easy way!) to add a jquery fadeIn and fadeOut effect to this image hover sript?
$('img[data-hover]').hover(function() {
$(this)
.attr('tmp', $(this).attr('src'))
.attr('src', $(this).attr('data-hover'))
.attr('data-hover', $(this).attr('tmp'))
.removeAttr('tmp');
}).each(function() {
$('<img />').attr('src', $(this).attr('data-hover'));
});
<img src="image1.jpg" data-hover="image2.jpg">
You might want to take a look at this:
http://bavotasan.com/2009/creating-a-jquery-mouseover-fade-effect/
I think this is what you want ?
HTML: