Let\'s say I have three divs, and I\'d like each to animate once the previous one is done. Currently, I write this:
$(\'div1\').fadeOut(\'slow\', function()
try something like:
$( 'div1' ).fadeOut(); $( 'div2' ).delay( 500 ).fadeOut(); $( 'div3' ).delay( 1000 ).fadeOut();
Adjust the timing as necessary