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() {
Try this out:
var time = 500; $('.comment').each(function() { var $this = $(this); function delayed() { $this.css({'opacity':0.0}).animate({ 'opacity':1.0 }, 450); } setTimeout( delayed , time ); time += 500; });