Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rafael-sa/a88e4e2c56302447d4429b712733dc68 to your computer and use it in GitHub Desktop.
Save rafael-sa/a88e4e2c56302447d4429b712733dc68 to your computer and use it in GitHub Desktop.
Ensure image load() works
$("img").load(function() {
// handle the image
}).each(function() {
// because image can be loaded before jquery binds the load event
if (this.complete) {
$(this).trigger("load");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment