Skip to content

Instantly share code, notes, and snippets.

@skwi
Created April 11, 2012 09:24
Show Gist options
  • Save skwi/2358214 to your computer and use it in GitHub Desktop.
Save skwi/2358214 to your computer and use it in GitHub Desktop.
Preload images with jQuery
$function($) {
var cache = [];
// Arguments are image paths relative to the current page.
$.preLoadImages = function() {
var args_len = arguments.length;
for (var i = args_len; i--;) {
var cacheImage = document.createElement('img');
cacheImage.src = arguments[i];
cache.push(cacheImage);
}
}
jQuery.preLoadImages("image1.gif", "/path/to/image2.png");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment