B
Buchwald
hello group,
I have a long (large) script that shows a random picture when a
webpage is refreshed. It's long because i have a lot of pictures: 246
Here is some code:
-----------------------------------------------------------------------------------------------
<!--
image1="smallpics/001-smallpic.jpg"
alt1="Ugly little picture!"
image2="smallpics/002-smallpic.jpg"
alt2="Ugly little picture!"
<<<you get the idea???>>>
image244="smallpics/244-smallpic.jpg"
alt244="Ugly little picture!"
image245="smallpics/245-smallpic.jpg"
alt245="Ugly little picture!"
image246="smallpics/246-smallpic.jpg"
alt246="Ugly little picture!"
len=246
now=new Date()
now=now.getSeconds()
rnd=now%len
image=eval("image"+rnd)
alt=eval("alt"+rnd)
document.write("<img src='" + image + "' alt='" + alt + "'
border=0></a>")
//-->
-----------------------------------------------------------------------------------------------
Can someone make it shorter for me?
The number of pics will grow and grow and i don't want to
copy/paste/adjust the [image***=] every time.
The pics are in seperate map on server.
The server does not support php :-(
Hope to hear from you.
tia
kind regards,
Buchw@ld
I have a long (large) script that shows a random picture when a
webpage is refreshed. It's long because i have a lot of pictures: 246
Here is some code:
-----------------------------------------------------------------------------------------------
<!--
image1="smallpics/001-smallpic.jpg"
alt1="Ugly little picture!"
image2="smallpics/002-smallpic.jpg"
alt2="Ugly little picture!"
<<<you get the idea???>>>
image244="smallpics/244-smallpic.jpg"
alt244="Ugly little picture!"
image245="smallpics/245-smallpic.jpg"
alt245="Ugly little picture!"
image246="smallpics/246-smallpic.jpg"
alt246="Ugly little picture!"
len=246
now=new Date()
now=now.getSeconds()
rnd=now%len
image=eval("image"+rnd)
alt=eval("alt"+rnd)
document.write("<img src='" + image + "' alt='" + alt + "'
border=0></a>")
//-->
-----------------------------------------------------------------------------------------------
Can someone make it shorter for me?
The number of pics will grow and grow and i don't want to
copy/paste/adjust the [image***=] every time.
The pics are in seperate map on server.
The server does not support php :-(
Hope to hear from you.
tia
kind regards,
Buchw@ld