Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rotating Webpages

Status
Not open for further replies.

catalystcommercial

Technical User
Oct 6, 2005
53
GB
Hi there

I need to be able to swap between 2 web pages every 2 mins on an endless loop.

i.e, display one web site for 2 mins, then display the next for 2 mins, then back to the first page and so on, I need it to be full screen

Any ideas from anyone on how to do this

thanks

Tim
 
Investigate the use of the meta refresh. This is plain HTML and won't require any javascript:

In page 1:
Code:
<meta http-equiv="refresh" content="120;url=http://www.www.www/page2.html">

In page 2:
Code:
<meta http-equiv="refresh" content="120;url=http://www.www.www/page1.html">

Those go in the <head> section of the page.

Cheers,
Jeff

[tt]Jeff's Page @ Code Couch
[/tt]

What is Javascript? FAQ216-6094
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top