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()
Use this:
$('#div1, #div2, #div3').each(function(index){
$(this).delay(1000 * index).hide(1000);
});
If you can give the Live DEMO$('.forHide').each(function(index, value){
$(this).delay(1000 * index).hide(1000);
});