So, I would like an element to fade in and wait half a second, then fade the next in etc...
My code:
$(\'.comment\').each(function() {
Or, something like this:
$.each($('.comment'), function(i, el){ $(el).css({'opacity':0}); setTimeout(function(){ $(el).animate({ 'opacity':1.0 }, 450); },500 + ( i * 500 )); });
demo => http://jsfiddle.net/steweb/9uS56/