I have a photo gallery where the thumbnails change the main large image. It works really well but I want the main image to revert back to the original image once the users mouse moves away from the thumbnails. Is there any way to do that? I've seen lots of similar scripts and tried them but I just can't work it out. Any help would be very gratefully received!
This is what I'm using...
$(document).ready(function(){
$(".thumbs a").hover(function(){
var largePath = $(this).attr("href");
var largeAlt = $(this).attr("title");
$("#largeImg").attr({ src: largePath, alt: largeAlt });
return false;
});
});
The images come from a database so I can't give it an explicit filename.
thanks