Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script type="text/javascript">
<!--
function preLoadImages()
{
var imageCache = new Array();
var linkArray = document.getElementsByTagName("a");
for (var loop=0; loop<linkArray.length; loop++)
{
if (linkArray[loop].className == "preloadThis")
{
imageCache[imageCache.length] = new Image();
imageCache[imageCache.length-1].src = linkArray[loop].href;
}
}
}
//-->
</script>
<body onload="preLoadImages();">
<!-- this image gets preloaded -->
<a href="images/wibble.gif" class="preloadThis">Click here to view image 1</a>
<!-- this one does not -->
<a href="images/bibble.gif">Click here to view image 2</a>
<a href="images/wibble.gif" class="pageLeft preloadThis">Click here to view image 1</a>
<a href="images/bibble.gif" class="tempClass inRow preloadThis">Click here to view image 2</a>