I have a web page that includes a bunch of images. Sometimes the image isn\'t available, so a broken image is displayed in the client\'s browser.
How do I use jQuery
Handle the onError
event for the image to reassign its source using JavaScript:
function imgError(image) {
image.onerror = "";
image.src = "/images/noimage.gif";
return true;
}
Or without a JavaScript function:
The following compatibility table lists the browsers that support the error facility:
http://www.quirksmode.org/dom/events/error.html