Skip to content

Instantly share code, notes, and snippets.

@boy3vil
Created March 4, 2015 04:14
Show Gist options
  • Select an option

  • Save boy3vil/da84a340896d45bfb394 to your computer and use it in GitHub Desktop.

Select an option

Save boy3vil/da84a340896d45bfb394 to your computer and use it in GitHub Desktop.
jQuery replace image broken
function imgError(image) {
image.onerror = "";
image.src = "/images/noimage.gif";
return true;
}
<img src="image.png" onerror="imgError(this);"/>
OR
<img src="image.png" onError="this.onerror=null;this.src='/images/noimage.gif';" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment