sainfate
04-09-2005, 02:34 PM
I hope somebody could help me with this, I want to display the images only when they are fully loaded, I've tried various scripts but they are either not working or difficult to customize... could someone help
Many thanks.
S.
Zohar Amihud
04-10-2005, 08:14 PM
<html>
<head>
<style>
img { visibility: hidden ; }
</style>
<script language="javascript">
function showIMG() {
objIMG = document.images ;
noIMGobj = document.images.length ;
for (var i=0 ; i < noIMGobj ; i++ ) {
objIMG[i].style.visibility = "visible" ;
}
}
</script>
</head>
<body onload="showIMG();">
<img src="http://www.bookchamp.net/images/lookMomCoverSmall.jpg" />
<img src="http://www.bookchamp.net/press/images/LookMom3D-300dpi.jpg" />
</body>
</html>
sainfate
04-13-2005, 03:46 PM
Thanks so much it works perfectly!!!!