vote up 8 vote down star
2

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 clients browser.

How do I use jQuery to get the set of images, filter it to broken images then replace the src?

--I though it would be easier to do this with Jquery, but It turned out much easier to just use a pure javascript solution. i.e the one provided by Prestaul

flag

6 Answers

vote up 8 vote down check

Basically you want to handle the onError event for the image to reassign the source. This can be done without jQuery:

function ImgError(source){
    source.src = "/images/noimage.gif";
    source.onerror = "";
    return true;
}

<img src="someimage.png" onerror="ImgError(this);"/>
link|flag
You probably want to clear out onerror before setting src. Otherwise if noimage.gif is also missing you might end up with a "stack overflow". – pcorcoran Sep 18 '08 at 17:14
I thought & hoped we were moving away from inline attributes for javascript events... – redsquare Sep 2 at 6:04
vote up 10 vote down

I believe this is what you're after: jQuery.Preload

Here's the example code from the demo, you specify the loading and not found images and you're all set:

$('#images img').preload({
    placeholder:'placeholder.jpg',
    notFound:'notfound.jpg'
});
link|flag
jQuery.Preload is a plugin which is required to use the example code. – Dan Sep 18 '08 at 15:35
1  
Yes...this is linked in the answer on the first line. – Nick Craver Sep 18 '08 at 16:03
vote up 0 vote down

Not sure if there is a better way, but I can think of a hack to get it - you could ajax post to the img url, and parse the response to see if the image actually came back. If it came back as a 404 or something, then swap out the img. Though i expect this to be quite slow.

link|flag
vote up 0 vote down

I don't know jQuery yet, so my answer will be generic (and the result of a quick search...). I found the page Detecting broken images with JavaScript (via a DZone Snippet, but I better give the original source!) which gives a simple and apparently relatively cross-browser (to test on Opera/Safari) method.

Of course, it would be better to serve a non-broken page, no? Although to be honest it can be a connection issue to.

link|flag
vote up 2 vote down

Here is a standalone solution:

$(window).load(function() {
  $('img').each(function() {
    if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
      // image was broken, replace with your new image
      this.src = 'http://www.tranism.com/weblog/images/broken_ipod.gif';
    }
  });
});
link|flag
Almost correct... a correct image in IE will still return (typeof(this.naturalWidth) == "undefined") == true; - I changed the if statement to (!this.complete || (!$.browser.msie && (typeof this.naturalWidth == "undefined" || this.naturalWidth == 0))) – Sugendran Feb 19 at 2:42
vote up 3 vote down

I use the built in error handler:

$("img").error(function () {
  $(this).unbind("error").attr("src", "broken.gif");
});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.