joining frames

liunx

Guest
I have framed page nav(1) and main(2).sometimes when i link to another page the navigator is repeated in the main frame.<br />
have tried target=_parent to no avail seems to think _parent is main. help,<!--content-->In your frameset, give each frame a name i.e:<br />
<br />
<frameset cols="170,*" border="0"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"nav.html" name="navbar" /><br />
<frame src=http://www.htmlforums.com/archive/index.php/"main.html" name="main" /><br />
</frameset><br />
<br />
Then when you want a link in the navbar to open in the main frame, you need to use:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"whatever.html" target="main">Whatever</a><br />
<br />
Hopefully that should work.<!--content-->
 
Back
Top