Skip to content

Instantly share code, notes, and snippets.

@ahmu83
Created May 13, 2014 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmu83/bf46b704f02a9e1a3922 to your computer and use it in GitHub Desktop.
Save ahmu83/bf46b704f02a9e1a3922 to your computer and use it in GitHub Desktop.
jQuery: preload an image
var src = "http://placekitten.com/500/500",
img = $("<img />");
img.hide().attr("src", src);
img.load(function() {
// Image is loaded
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment