Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Leandro Ardissone http://www.ardissone.org/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Images Preloader

   1  
   2  // Image Preloader  v1.0.1
   3  // documentation: http://www.dithered.com/javascript/image_preloader/index.html
   4  // license: http://creativecommons.org/licenses/by/1.0/
   5  // code by Chris Nott (chris[at]dithered[dot]com)
   6  
   7  
   8  function preloadImages() {
   9     if (document.images) {
  10        for (var i = 0; i < preloadImages.arguments.length; i++) {
  11           (new Image()).src = preloadImages.arguments[i];
  12        }
  13     }
  14  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS