Using jQuery delay() with separate elements
- by boomturn
I want to fake a simple animation on page load by sequentially revealing several pngs, each appearing instantly but with unique, precisely timed delay before the next one. Using the latest version of jQuery (1.4.2 at writing), which provides a delay method. My first (braindead) impulse was:
$('#image1').show('fast').delay(800);…