Created
December 19, 2013 20:31
-
-
Save pandauxstudio/8045773 to your computer and use it in GitHub Desktop.
Add image placeholder if image is not found.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("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