Pre-load Images

This example shows you how to pre-load images on your web page.

<HTML>
<HEAD>
<script language="javascript1.2">
<!-- Begin Code
   
      var counter;
      var images=new Array("image1.gif","image2.gif","image3.gif");
      var imageList=new Array();

function loadFast(){ /* Start of the function */
  for(counter in images){
       imageList[counter]=new Image();
       imageList[counter].src=images[counter];
  }

}/* End of the Function */

End of the script code //-->
</script>
</HEAD>
/*Now call this function in the BODY tag of HTML page*/
<BODY>
  <script>
     loadFast();
  </script>
</BODY>
</HTML>

You might also like...

Comments

Peeyush Nigam More than 3yrs of practical and job experience in IT Industry. Currently running own ASP center in city KANPUR - INDIA [url="www2.domaindlx.com/pari"]PARI WEB SERVICES™[/url] U may [email="webmaste...

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Never trust a programmer in a suit.” - Anonymous