Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How i show cross image like crome and ie in my firefox when image not show

more options

if some image not show in my web page crome and ie show cross icon there how can i use that in my firefox

if some image not show in my web page crome and ie show cross icon there how can i use that in my firefox

All Replies (3)

more options

<img src="../images/dragonfly.gif" alt="[dragonfly missing]" title="Dragonfly art by ideveloper">

alt is used if the image is not found.

title is what shows when you move cursor over the image.\


Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.

Modified by David McRitchie

more options

thanks but when we not provie alt and title to a image

more options

My reply to your other post was lost when that thread was locked. (Insert sad face here.)

If your page is rendering in Quirks mode, then Firefox will display a placeholder. It does not natively do that in Standards mode, but you can force it with a user style (see, e.g., the July 19th reply in this thread: base64 - CSS transparent background image using "data:" - Stack Overflow).

Or, if you want to use a script solution (e.g., Greasemonkey userscript), you can identify the missing images with this:


var missingimgs=document.querySelectorAll("img:-moz-broken");

Or maybe there's an add-on??