arrêter

Méthodestop

1
$(all).stop();

Arrête l'animation

1
$("#test").animate({left: '+=800'}, 5000);
2
$("#stop").click(function(){
3
  $("#test").stop();
4
});