Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created February 19, 2015 12:45
Show Gist options
  • Save mateusneves/166ad6a8a8734debfc92 to your computer and use it in GitHub Desktop.
Save mateusneves/166ad6a8a8734debfc92 to your computer and use it in GitHub Desktop.
Callback on image load
$("img").one("load", function() {
// do stuff
}).each(function() {
if(this.complete) $(this).load();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment