Hi, I recently got a piece of JavaScript code snippet from here.
Could someone please explain how this statement works: (jq=jq.slice(1)).length && hidenext(jq);
in the function below?
(function hidenext(jq){
jq.eq(0).fadeOut("fast", function(){
(jq=jq.slice(1)).length && hidenext(jq);
});
})($('div#bodyContent a'))