Click to See Complete Forum and Search --> : JavaScript image preloader


slayermet420
04-24-2003, 09:42 PM
i can't currently find a working preloader, since i can't get into a site which i created one in. i want to preload the background image for a scroller, so it loads in the HEAD. like i said, i did this in another site, but the server is down. any help is greatly appreciated.

p.s. please don't hack me, but it's: My Website (http://www.angelfire.com/band2/tom420_2003/index2.html)

DrDaMour
04-25-2003, 02:52 AM
if you mean load it into cache, so it's not always redownloaded that javascript way is


<script>
var pic = new Image();
pic.src = "URL";
</script>