Skip to content

Instantly share code, notes, and snippets.

@kalinchernev
Created October 21, 2014 11:54
Show Gist options
  • Save kalinchernev/dc54adfea60fe84c3693 to your computer and use it in GitHub Desktop.
Save kalinchernev/dc54adfea60fe84c3693 to your computer and use it in GitHub Desktop.
replacing broken images with existing image
$(document).ready(function(){
$('img').error(function(){
$(this).attr('src', 'http://mysite/myimage.jpg');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment