In order to expand the comment on zacechola, you want to animate the element hiding, and then disconnect / attach, then animate showing it again.
So something like:
var element = ... var newParent = ... element.slideup('normal', function() { element.detach().appendTo(newParent); element.slidedown('normal'); });
Jason source share