You are here: irt.org | FAQ | JavaScript | Misc | Q125 [ previous next ]
Use frames with a hidden frame which loads the next document.
Say frame1.html has:
<FRAMESET ROWS="100%,*"> <FRAME SRC="page1.html"> <FRAME SRC="page2.html"> </FRAME>
Then the link to the next page should be:
<A HREF="frame2.html" TARGET="_top">next page</A>
And frame2.html has:
<FRAMESET ROWS="100%,*"> <FRAME SRC="page2.html"> <FRAME SRC="page3.html"> </FRAME>
etc, etc