Skip to content

Instantly share code, notes, and snippets.

@solobat
Forked from nobuti/gist:3756881
Created June 7, 2017 07:33
Show Gist options
  • Save solobat/95b1906e1e8fb989d5fd1057b29eafba to your computer and use it in GitHub Desktop.
Save solobat/95b1906e1e8fb989d5fd1057b29eafba to your computer and use it in GitHub Desktop.
Easy jquery/zepto images preload
var images = ["path/to/image", "path/to/image", ... , "path/to/image"],
preloaded = images.length;
_.each(images, function(img) {
var image = $('<img />').attr('src', img);
image.on('load', function(){
preloaded--;
if (preloaded === 0){
console.log("All preloaded!");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment