I was wondering if anyone has any strategies for optimizing the pre-loading of images via javascript?
I\'m porting a Flash application into html/css, attempting to recre
If you don't need all the images right away, you can use the window.timeout() function to do some of the work after the page has initialized.
Also, if you use one image in multiple places, you can avoid multiple calls to the server by putting the image into a CSS style and reusing that style instead of the image.