.stop()
Ejemplo:
Código HTML:
Ver original<!doctype html>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript"> $(function(){
$('div')
.mouseover(function(){
$(this).stop().animate({
left : 200
})
})
.mouseout(function(){
$(this).stop().animate({
left : 0
})
})
});
<!--
div{
position:absolute;
width:200px;
height:200px;
background:red;
}
-->