Using javascript is there a way to tell if a resource is available on the server? For instance I have images 1.jpg - 5.jpg loaded into the html page. I\'d like to call a Jav
This works fine:
function checkImage(imageSrc) { var img = new Image(); try { img.src = imageSrc; return true; } catch(err) { return false; } }