$("#theDiv").hover(function(){
$(this).animate( {top: "300px", left: "400px", width: "50px" , height: "50px" },"Fast")
});
$("#theDiv").click(function(){
$(this).stop();
});
Code as above. I tried to stop the hover function when I click it, but it doesn't work. Or is it not possible at all ?