0

I am trying to create a webpage that loops through a number of webpages much like the script in this post Cycle scaled webpages in iframe?

However it needs to be done without using iframes - any suggestions?

Community
  • 1
  • 1
Ryan
  • 1
  • 1
  • if you own all the pages you can add a script to go to the next website, although i find what i am saying really stupid – Ibu May 24 '11 at 05:39

2 Answers2

0

In each page have

<meta http-equiv="refresh" content="30;url=http://yoursite.com/pagex.html">

where 30 is seconds and the x is the page number of the NEXT page

mplungjan
  • 169,008
  • 28
  • 173
  • 236
0

I'm assuming:

  • These are all different websites, on different domains, so ajax isn't even possible (cross-site scripting issue)
  • No control/access to editing the pages on these websites

Therefore to put it simply, it's not possible to cycle through pages without an iframe/or any frames under these circumstances.

Gary Green
  • 22,045
  • 6
  • 49
  • 75