PeterJS
06-08-2003, 12:13 PM
I have a board where you can change the logo in the header, but want to change it for each forum, so it's a different image. I have this script.....
<script language="JavaScript">
for(i=0 ; i<document.images.length ; i++){
if(document.images[i].src=="URL HERE"){
document.images[i].src="URL HERE"
}
}
</script>
Is there a way to change the image without the user noticing it change. Because at the moment when you goto into a forum, you see the previous image for a split second before it changes.
Thanks
Peter
<script language="JavaScript">
for(i=0 ; i<document.images.length ; i++){
if(document.images[i].src=="URL HERE"){
document.images[i].src="URL HERE"
}
}
</script>
Is there a way to change the image without the user noticing it change. Because at the moment when you goto into a forum, you see the previous image for a split second before it changes.
Thanks
Peter