This is probably due to one or more non-standard and/or questionable practices used in the HTML and/or javascript code on the page. I can't find the specific one or ones though, if I do I will get back to you.
However, your assessment is essentially correct. IE is trying to load the:
Code:
<img src="./images/web_opencircle.png" dat . . .
image and not being very successful at it. If you preload the image, it should be fine, in fact solved the problem here:
Code:
. . . me="verify-v1" content="lfGK9ohBpv4bFU/+gz585u8zaqGhuH9mrS+WFfJ0xls=" />
<meta http-equiv="content-Type" content="text/head; charset=ISO-8859-1">
<meta http-equiv="imagetoolbar" content="no">
<script type="text/javascript">
(function(){
var im = new Image();
im.src = './images/web_opencircle.png';
})();
</script>
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type="text/javascript" src="./js/stepcarousel.js">
<!--
/***********************************************
* Step Carousel View . . .
Added Later:
I believe this is the old IE bug of "I can't load an image if I'm busy loading it". A Bug I first heard of here:
http://www.quirksmode.org/blog/archi...notes_r_1.html
. . . Every once in a while, especially on slow connections, Explorer Windows refuses to show the images . . . , because (I guess) it's still busy loading them from the server — or something.
Bookmarks