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

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

Preloading Images with jQuery

Taken from http://www.mattfarina.com/2007/02/01/preloading_images_with_jquery

   1  
   2  jQuery.preloadImages = function() {
   3  	for (var i = 0; i < arguments.length; i++) {
   4  		jQuery("<img>").attr("src", arguments[i]);
   5  	}
   6  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS