Code:
//create the animation.
$('img#header').hover(function(){
$(this).animate({"top": "-10px" }, "slow");
I am trying to have the hover stop and go back to normal when the user hovers off the image. I got the animation working, just not when I hover off. Any help?
1 Answer