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\
Here is how you do it:
var delay = 200, t = 0; $("li").css('display', 'none').each(function(){ t += delay; var $li = $(this); setTimeout(function(){ $li.fadeIn(1900); },t); });