Skip to content

Instantly share code, notes, and snippets.

@digamber89
Last active May 25, 2018 05:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digamber89/78cd64d27b31d5f88a5f1916691f1ac2 to your computer and use it in GitHub Desktop.
Save digamber89/78cd64d27b31d5f88a5f1916691f1ac2 to your computer and use it in GitHub Desktop.
Alternate image if image returns 404 or not found
<script>
function imgError(image) {
image.onerror = "";
image.src = "link-to-backup-image.svg";
return true;
}
</script>
<img src="some-image-url.jpeg" onerror="imgError(this);" >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment