Skip to content

Instantly share code, notes, and snippets.

@logeshpaul
Last active December 11, 2015 15:08
Show Gist options
  • Save logeshpaul/4618933 to your computer and use it in GitHub Desktop.
Save logeshpaul/4618933 to your computer and use it in GitHub Desktop.
JS: jQuery to replace broken images
$(window).load(function() {
$('img').each(function() {
if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
// image was broken, replace with your new image
this.src = 'http://www.tranism.com/weblog/images/broken_ipod.gif';
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment