IE Not Displaying Images?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robbie

    IE Not Displaying Images?

    On this page http://fire.prohosting.com/auxxx/Mammoth/pic.html there is
    a simple script which stores thumbnails of pictures in a dropdown menu
    thing. In IE the when you open the menus the thumbnails are not there,
    you have to right click and show image to display the images. What
    extactly is going on and how do I fix it?
  • ChrisRath

    #2
    Re: IE Not Displaying Images?

    >In IE the when you open the menus the thumbnails are not there,[color=blue]
    >you have to right click and show image to display the images. What
    >extactly is going on and how do I fix it?[/color]

    Looks like:



    I had the problem crop up in my web app. I use the following JavaScript to get
    around the problem:

    function imagePatchIE() {
    var imageLoadOk = true;
    try {
    for (var i = 0; i < document.images .length; i++) {
    if (!document.imag es[i].mimeType) {
    document.images[i].src = document.images[i].src;
    imageLoadOk = false;
    }
    }
    } catch(arg) {
    imageLoadOk = false;
    }
    if (!imageLoadOk) setTimeout('ima gePatchIE();', 5000);
    }

    if (document.all) setTimeout('ima gePatchIE();', 1000);

    Comment

    Working...