Forum Moderators: open
You also may want to specify a lowsrc for your image tags with a very small gif on your own server as a place holder until the images load.
(not trying to go too basic on you, but it may help)
too bad you don't have copies of the images on your own, that would solve your entire problem.
lowsrc?
lowsrc [htmlgoodies.com]
TJ
[edited by: tedster at 8:07 pm (utc) on Aug. 22, 2003]
[edit reason] fix display code [/edit]
<script type="text/javascript">
<!--
// change array length to 1 based image count
var imgs = new Array(3);
imgs[0] = "img1.png";
imgs[1] = "img2.png";
imgs[2] = "img3.png";
// add more imgs here
function loadImgs() {
var j = 0;
for (var i = 0; i < document.images; ++i) {
j = ++i;
j = j.toString();
document.getElementById("img" + j).src = imgs[i];
}
}
//-->
</script>
<img id="img1" src="" alt="picture one" width="50" height="20"/>
<img id="img2" src="" alt="picture two" width="50" height="20"/>
<img id="img3" src="" alt="picture three" width="50" height="20"/>
...<script type="text/javascript">
<!--
void(loadImgs());
//-->
</script>
</body>
Mabye that will do the trick?
Jordan