Yourself said the following on 6/14/2006 7:13 AM:
Yeah it would be nice to do it on the server, but the markup is coming
from a CMS which I can't modify.
onload of the page, you loop through all images in the document.images
collection and set them to a false image that doesn't exist. Then, the alt
text gets displayed. It doesn't act exactly like disabled images (it still
shows the red X in IE) but it comes close.
Testing offline, FF doesn't change the image but online it does.
window.onload = breakImages;
function breakImages()
{
var totalImages = document.images.length;
for (var i=0;i<totalImages;i++)
{
document.images
.src = 'fakeImage.jpg';
}
}