Skip to content

Instantly share code, notes, and snippets.

@CoralSilver
Last active August 29, 2015 14:11
Show Gist options
  • Save CoralSilver/478fe5812677da596fab to your computer and use it in GitHub Desktop.
Save CoralSilver/478fe5812677da596fab to your computer and use it in GitHub Desktop.
Jquery image preloader
$.preloadImages = function() {
for (var i = 0; i < arguments.length; i++) {
$("<img />").attr("src", arguments[i]);
}
}
$.preloadImages([
"hoverimage1.jpg",
"hoverimage2.jpg"
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment