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);
});