You are here: irt.org | FAQ | JavaScript | Frame | Q129 [ previous next ]
Use another frameset current frame which uses a hidden frame to preload the next document.
Say your current frameset has:
<FRAMESET COLS="100,*">
<FRAME SRC="apage.html">
<FRAME SRC="bpage.html">
</FRAMESET>Then instead of the bpage.html replace it with another nested framset
<FRAMESET COLS="100,*">
<FRAME SRC="apage.html">
<FRAMESET ROWS="100%,*">
<FRAME SRC="bpage.html">
<FRAME SRC="cpage.html">
</FRAMESET>
</FRAMESET>Then the link to the cpage.htm; from within bpage.html should be:
<A HREF="cpage.html" TARGET="_parent">Next Page</A>