function divShow(sel,n){ if(n>=sel.length) return; setTimeout(function (){sel.eq(n).show('fast');divShow(sel,n+1)}, 2000); } divShow($('div'),0)