Skip to content

Instantly share code, notes, and snippets.

@pandauxstudio
Created December 19, 2013 20:31
Show Gist options
  • Save pandauxstudio/8045773 to your computer and use it in GitHub Desktop.
Save pandauxstudio/8045773 to your computer and use it in GitHub Desktop.
Add image placeholder if image is not found.
$("img").error(function () {
$(this).attr('src', '/images/photo-placeholder.jpg');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment