Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created January 29, 2014 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Kcko/8694094 to your computer and use it in GitHub Desktop.
Save Kcko/8694094 to your computer and use it in GitHub Desktop.
Preload images
$.preloadImages = function() {
for(var i = 0; i<arguments.length; i++) {
$("<img />").attr("src", arguments[i]);
}
}
$(document).ready(function() {
$.preloadImages("hoverimage1.jpg","hoverimage2.jpg");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment