Skip to content

Instantly share code, notes, and snippets.

@yratof
Created December 19, 2016 16:48
Show Gist options
  • Save yratof/8dfd44516641f7542974efcd4479dc53 to your computer and use it in GitHub Desktop.
Save yratof/8dfd44516641f7542974efcd4479dc53 to your computer and use it in GitHub Desktop.
Failed iamges in JS
function imgLoaded(imgElement) {
return imgElement.complete && imgElement.naturalHeight !== 0;
}
$ = jQuery;
$('img').each( function(){
if ( ! imgLoaded( $(this) ) ) {
$(this).addClass('failed');
}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment