I'm trying to make all the elements of a certain class show, but each after a delay.
This code shows all the elements instantly, but I want to wait 1 second between each.
$('.notify').each(function(index) {
$(this).fadeIn('slow');
});
I've tried using setTimeout but it 'loses' the element variable (the one called 'this'). I've also tried using .delay() but that just makes all the elements show together after 1 second.