Skip to content

Instantly share code, notes, and snippets.

@alxsimo
Created June 1, 2014 19:31
Show Gist options
  • Save alxsimo/c51ba8745e75c7972351 to your computer and use it in GitHub Desktop.
Save alxsimo/c51ba8745e75c7972351 to your computer and use it in GitHub Desktop.
[jQuery] Pre-cargar imágenes
$.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