I have jquery ui dialog box, and I want to Animate multiple dialog boxes on single click. But it animate only inner boxes div inside the complete dialog box.anyone let me know how to do this ? I've done this: Fiddle DEMO
//Script
$("#animate").click(function() {
$('#dialog').animate({
left: "50px",
});
$('#dialog2').animate({
top: "100px",
});
});