Forum Moderators: not2easy
What's the simlpest js I could add to the first page that would pre-load the remaining images while people are viewing the first page?
(I've been leary of the "slideshow" javascripts I've seen so far because each image is always a different size, and changing the script for differing sizes each week looks to be more trouble than it's worth)
Thanks,
jk321
<script language="JavaScript">
<!--nextslide=new Image()
nextslide.src="filename.ext"//-->
</script>
This invisibly downloads the image "filename.ext" to the cache. It goes at the very end of the HTML so that it doesn't compete with the download of the page that is currently displayed.
It works!