Frames....Again

admin

Administrator
Staff member
hi..... i have a frame on the left side of my page with links but when i click a link it loads it in that small frame how do i make it load on the right side?<!--content-->#1 Give each frame a name<br />
#2 in the link tag, set the target to the frame name.<br />
<br />
Example:<br />
<br />
=========================================================<br />
This is your index page that encloses both pages:<br />
<br />
<html><br />
<br />
<head><br />
<title>New Page 2</title><br />
</head><br />
<br />
<frameset cols="*,*"><br />
<frame name="left" src=http://www.htmlforums.com/archive/index.php/"newpage3.htm"><br />
<frame name="right" src=http://www.htmlforums.com/archive/index.php/"newpage4.htm"><br />
<noframes><br />
<body><br />
<p>This page uses frames, but your browser doesn't support them.</p><br />
</body><br />
</noframes><br />
</frameset><br />
</html><br />
<br />
=========================================================<br />
<br />
=========================================================<br />
This is your left frame:<br />
<br />
<html><br />
<br />
<head><br />
<title>New Page 3</title><br />
</head><br />
<br />
<body><br />
<br />
<p><a href=http://www.htmlforums.com/archive/index.php/"http://www.yahoo.com" target="right">yahoo</a></p><br />
</body><br />
</html><br />
=========================================================<!--content-->
 
Back
Top