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\
Maybe something like this:
var delay = 500, t = 0; $("li").css('display', 'none').each(function(){ t += delay; var $li = $(this); setTimeout(function(){ $li.fadeIn(); },t); });