I'm not sure there is any difference in performance, most animations use setTimeout instead of setInterval for better timing too (though it's irrelevant in this case). And it would require a bit more code.
- ricardo On Jan 29, 2:39 am, RobG <rg...@iinet.net.au> wrote: > On Jan 16, 3:15 am, Ricardo Tomasi <ricardob...@gmail.com> wrote: > > > Can you add a single class "sticky" to all of the notes? Then do this: > > > $('.sticky:hidden').each(function(i){ > > var t = $(this); > > setTimeout(function(){ t.fadeIn(500) }, i*100); > > }); > > Rather than 9 calls to setTimeout, consider one call to setInterval, > then cancel it when the last element is reached. > > -- > Rob