Is it possible to start the .gif animation when you hover over it and pause it when you're not hovering over it? I do not want to reset the image to the start of it's animation when stopping hovering over it.
EDIT: Thanks for the help, but nothing worked like I wanted. Best solution I found for this was this:
HTML:
<img id="gif1" src="static1.jpg">
JS:
$("#gif1").hover(
function() {
$(this).attr("src", "animate1.gif");
},
function() {
$(this).attr("src", "static1.jpg");
}
);
So, just the resetting thingy.