Skip to content

Instantly share code, notes, and snippets.

@atma
Created July 2, 2012 03:45
Show Gist options
  • Save atma/3030909 to your computer and use it in GitHub Desktop.
Save atma/3030909 to your computer and use it in GitHub Desktop.
jQuery 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