Skip to content

Instantly share code, notes, and snippets.

@Rafailong
Created January 29, 2014 18:26
Show Gist options
  • Save Rafailong/8693910 to your computer and use it in GitHub Desktop.
Save Rafailong/8693910 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