[jQuery] sequential animation

[jQuery] sequential animation


Hi,
I have the following :
$("div", this.parent).animate({ height: "400" });
$(".rightColumn", this.parent).children().fadeOut();
$(".rightColumn", this.parent).append($("#dd-EditCutting"));
Now I would like the last line to be executed only after the two
animations have completed. Is there a way to do that ?