In cases where the missing image (broken link to image) is placed for internet explorer it shows a cross and border.

Can we remove that cross and the border for broken images?

Internet Explorer 7 image

See below for how it looks on firefox

Firefox broken image

We need to get rid of the border and cross for broken image. Can this be fixed by CSS?

link|improve this question

72% accept rate
Why would you load a missing image in the first place? – Randell Aug 26 '09 at 10:14
We have a database of lots of images. In some cases there might be a missing image BUT we do not want to show a missing images like in IE. Also, there is an overhead to scan each folder and to check if the image is present or not before showing it to the user. – ToughPal Aug 26 '09 at 10:17
feedback

2 Answers

up vote 2 down vote accepted

I think that you must use javascript. You can use something like this:

var imgs=document.getElementsByTagName("img");
for(i=0;i<imgs.length;i++)
imgs[i].onerror=function(){
imgs[i].parentNode.removeChild(imgs[i]);
}

with this function you will remove all images with errors.

link|improve this answer
Thanks, any CSS solution for this? We also may have some divs loaded by AJAX and we might not be able to attach this onerror to each image. – ToughPal Aug 26 '09 at 10:57
feedback

Based on your comment, why can't you just check if the image exists in your server-side script before outputting the HTML? There shouldn't be much of an overhead.

In PHP it would be something like:

<?php
if (file_exists($imgUrl)) {
    echo '<img src="', $imgUrl, '" alt="" />';
}
?>
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.