/ Published in: jQuery
URL: http://net.tutsplus.com/videos/screencasts/quick-tip-easy-sequential-animations-in-jquery/
Expand |
Embed | Plain Text
var paras = $('p'), i = 0; // If using jQuery 1.4, you don't need to do || []. (function() { $(paras[i++] || []).fadeOut('slow', arguments.callee); })();
You need to login to post a comment.
