/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('a').hide(); (function shownext(jq){ console.log(jq); jq.eq(0).delay(500).fadeIn("slow").delay(5000).fadeOut("slow", function(){ (jq=jq.slice(1)).length && shownext(jq); }); })($('a'))
URL: http://jsfiddle.net/MhEUt/