I try to understand whats happening within this code: (This is said to be a very effective way for solving chained callbacks)
(function hidenext(jq){
jq.eq(0).fadeOut("fast", function(){
(jq=jq.slice(1)).length && hidenext(jq);
});
})($('div#bodyContent a'))
Would really appreciate some help!
Thanks, Freddie from Sweden