benjaminparry + jquery   15

Sequentially chain your callbacks in jQuery – Three ways « Paul Irish
(function hidenext(jq){
jq.eq(0).fadeOut("fast", function(){
(jq=jq.slice(1)).length && hidenext(jq);
});
})($('div#bodyContent a'))
javascript  jQuery  chaining 
september 2011 by benjaminparry

Copy this bookmark:



description:


tags: