jQuery/finish()

解説
finish():アニメーションの最後へ飛ぶメソッド
sample1
sample1code
$("#start").click(function(){
  $(".anime").animate({
    width:"80%",
    height:"100px"
  },3000);
});
$("#stop").click(function(){
  $(".anime").stop();
});
$("#finish").click(function(){
  $(".anime").finish();
});
$("#reset").click(function(){
  $(".anime").css({ width: "", height: ""});
});