|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
is there a way to have a rotating refresh page? i.e. a different page is shown to the visitor out of however many different pages there are and then it refreshes to the main index page - a rotating refresh page i guess.
any help would be appreciated. |
|
#2
|
|||
|
|||
|
Well you could put something like this in the body tag of each page:
<body onLoad="setTimeout("parent.location='nextpage.html'",5000);"> This would redirect to the next page 5 seconds after this page loads. 5000 milliseconds = 5 seconds Spookster |
|
#3
|
|||
|
|||
|
not exactly what i was hoping for, but it's cool too. i guess i meant a splash page for, say, each day of the week that redirects to the main index page - is that any clearer?
|
|
#4
|
|||
|
|||
|
<HTML>
<HEAD> <META HTTP-EQUIV="Refresh" Content="5;URL=index2.html"> </HEAD> <BODY> your content here. </BODY> </HTML> Try that. That is using HTML 2.0 headers without JavaScript or any other language to forward to another page. Set the number 5 in : Content="5; part to however long you want it. This will work in any browser except maybe IE2 or Mozilla 1. ------------------ -Gabe "Save trees, eat beaver." "y!php3++?" |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > refresh |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|