Skip to content

Instantly share code, notes, and snippets.

@rezozero
Created November 6, 2012 18:21
Show Gist options
  • Select an option

  • Save rezozero/4026523 to your computer and use it in GitHub Desktop.

Select an option

Save rezozero/4026523 to your computer and use it in GitHub Desktop.
JS: onLoadImages
/* Wait for all images loaded */
var images = $(deployed).find("img");
var nimages = images.length;
images.load(function () {
nimages--;
if(nimages == 0) {
console.log("Images loaded");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment