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\
Loop through the li, and use setTimeout to queue the animation for that li.
$('li').each(function () { var li = this; animateLi = function () { li.fadeIn(800); } setTimeout(animateLi, timeout); timeout += 100; });