I\'d like to structure my JQuery to fade in each individual item at a time. Here\'s an example of the behavior, and here\'s the JQuery I have so far:
$(\'li\
There is another way to fade in elements after each other:
$.fn.fadeInNext = function(delay) { return $(this).fadeIn(delay,function() { $(this).next().fadeInNext(); }); }; $('li').hide().first().fadeInNext(1000);