Added a new .stop() method which stops all animations running on the matched set...
authorJohn Resig <jeresig@gmail.com>
Tue, 4 Sep 2007 00:28:22 +0000 (00:28 +0000)
committerJohn Resig <jeresig@gmail.com>
Tue, 4 Sep 2007 00:28:22 +0000 (00:28 +0000)
commit1ce8006d480ebd64350983a17be1cc2e3f043958
tree026a755acb03ef2caadedc68850b005b362a2c4d
parentd5bb0e317988965306b1ccb395fafc4554aba49c
Added a new .stop() method which stops all animations running on the matched set of elements.

Example:
  $("#foo").slideDown(1000);
  setTimeout(function(){
    $("#foo").stop();
  }, 500);
src/fx/fx.js
src/fx/fxTest.js