Say I have this.
var e = $('#div');
I want to do
e.fadeOut(3000).animate({'top':500}, 3000);
And then
e.animate({'top':250}, 3000);
Immediately, stopping the original top
animation on e
, but without stopping the fade.
Note I am also using the jQuery Transit plugin in place of jQuery animate.