Sequentially chain your callbacks in jQuery – Three ways « Paul Irish
may 2011 by gingerbeardman
(function hidenext(jq){
jq.eq(0).fadeOut("fast", function(){
(jq=jq.slice(1)).length && hidenext(jq);
});
})($('div#bodyContent a'))
animation
javascript
jquery
sequential
fade
loading
effect
jq.eq(0).fadeOut("fast", function(){
(jq=jq.slice(1)).length && hidenext(jq);
});
})($('div#bodyContent a'))
may 2011 by gingerbeardman
Copy this bookmark: