up vote 54 down vote favorite
28
share [g+] share [fb]

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 thought 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

link|improve this question
feedback

10 Answers

up vote 54 down vote accepted

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|improve this answer
7  
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
8  
I thought & hoped we were moving away from inline attributes for javascript events... – redsquare Sep 2 '09 at 6:04
4  
redsquare... they are perfectly understandable when you are judicious about keeping them under control and can even be useful when you want your markup to reflect what is actually going to happen. – NickC Feb 18 '10 at 21:41
feedback

I use the built in error handler:

$("img").error(function () {
  $(this).unbind("error").attr("src", "broken.gif");
});
link|improve this answer
12  
If you use this technique you can use the "one" method to avoid needing to unbind the event: $('img').one('error', function() { this.src = 'broken.gif'; }); – Prestaul Apr 1 '11 at 16:18
+1 But do you have to unbind it? It works beautifully on dynamic images (eg. ones that can change on hover) if you don't unbind it. – aximili Apr 5 '11 at 5:27
I think that if you don't unbind it, and the broken.gif src reference ever fails to load for any reason, then bad things could happen in the browser. – travis Apr 5 '11 at 15:49
feedback

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|improve this answer
jQuery.Preload is a plugin which is required to use the example code. – Dan Lord Sep 18 '08 at 15:35
4  
Yes...this is linked in the answer on the first line. – Nick Craver Sep 18 '08 at 16:03
feedback

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|improve this answer
1  
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 '09 at 2:42
feedback
$(window).bind('load', function() {
$('img').each(function() {
    if((typeof this.naturalWidth != "undefined" &&
        this.naturalWidth == 0 ) 
        || this.readyState == 'uninitialized' ) {
        $(this).attr('src', 'missing.jpg');
    }
}); })

Source: http://www.insideria.com/2009/03/jquery-quickie---broken-images.html

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

couldn't find a script to suit my needs so I made a recursive function to check for broken images and attempt to reload them every 4 sec until they are fixed. I limited it to 10 attempt as if it's not loaded by then the image might not be present on server and the function would enter an infinite loop. Still testing though. Feel free to tweak it :)

var retries = 0;   
$.imgReload = function() {
var loaded = 1;


$("img").each(function() {
    if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {

        var src = $(this).attr("src");
        var date = new Date();          
        $(this).attr("src", src + "?v=" + date.getTime()); //slightly change url to prevent loading from cache
        loaded =0;

    }
});
retries +=1;
if(retries < 10) //if after 10 retries error images are not fixed maybe because they are not present on server, the recursion will break the loop
 {if(loaded == 0)
   {setTimeout('$.imgReload()',4000); // I think 4 seconds is enough to load a small image (<50k) from a slow server
   } 
  //all images have been loaded 
  else {// alert("images loaded");
       }
 }
 //if error images cannot be loaded  after 10 retries
 else {// alert("recursion exceeded");
      }

}

jQuery(document).ready(function() {
 setTimeout('$.imgReload()',5000);
});
link|improve this answer
feedback

better call using

jQuery(window).load(function(){
$.imgReload();
});

because using document.ready doesn't necessary imply that images are loaded, only the html. thus no need for a delayed call

link|improve this answer
feedback

Don't know if this is right but $(window).load() doesn't seem to trigger if images are not completely loaded so it's better to stick with first variant.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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