I try $(\'somediv\').fadeOut.remove(); but it only remove it, bang... it dont wait for the nice fadeOut, and THEN remove
$(\'somediv\').fadeOut.remove();
why.. how to respect fadeout, and t
Here is the simple way,
$('#somediv').fadeOut(300,function(){ $(this).remove(); })};
or
$('#somediv').fadeOut("slow",function(){ $(this).remove(); })};