$("div").hover(function(){ $(this).stop(true).delay(1000).animate({ width:"70px", height: "70px" }); },function(){ $(this).stop(true).animate({ width:"50px", height: "50px" }); });