Skip to content

Instantly share code, notes, and snippets.

@iptpv
Created April 15, 2015 10:20
Show Gist options
  • Save iptpv/a902d93a0517c565138b to your computer and use it in GitHub Desktop.
Save iptpv/a902d93a0517c565138b to your computer and use it in GitHub Desktop.
$('img').each(function () {
var img = new Image();
img.onload = imageLoaded;
img.src = $(this).attr('src');
});
imageLoaded = function () {
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment