Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q125 How do I pre-load a page?

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

©2018 Martin Webb