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

Q1390 How can I load a page into another frame?

You are here: irt.org | FAQ | HTML | Q1390 [ previous next ]

You need to name your frames:

<frameset cols="50%,*">
<frame name="left" src="page1.htm">
<frame name="right" src="page2.htm">
</frameset>

then from left to right:

<a href="nextpage.htm" target="right">...</a>

from right to left:

<a href="nextpage.htm" target="left">...</a>

Feedback on 'Q1390 How can I load a page into another frame?'

©2018 Martin Webb