Skip to content

Instantly share code, notes, and snippets.

@probil
Created July 9, 2015 11:29
Show Gist options
  • Save probil/da0bf48429c94b0a2c8b to your computer and use it in GitHub Desktop.
Save probil/da0bf48429c94b0a2c8b to your computer and use it in GitHub Desktop.
Simple image preloader
/**
* Preload images
*
* @param {Array} images
*/
window.preload_images = function (images) {
$(document).ready(function () {
$.each(images, function (index, image_url) {
var image = new Image();
image.src = image_url;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment