First, it is necessessary to determine which frame you are going to reference. Start at zero and count down then left to right, i.e.
--------------------------
| FRAME 0 |
--------------------------
| F | F |
| R | R |
| A | A |
| M | M |
| E | E |
| | |
| 1 | 2 |
--------------------------
| FRAME 3 |
--------------------------
For the sake of example, lets assume that you have the link in FRAME 1 and want to change FRAME 2. Then you can use a regular anchor tag laid out as follows:
<a target="parent.frames[2]" href="http://www.yehey.com
Try it out
Main Topics
Browse All Topics





by: fbogPosted on 2000-07-11 at 08:59:49ID: 3302470
Assuming, frames[0] - is left, and frames[1] - is main:
href = "http://www.yehey.com";
<script language="JavaScript" TYPE="text/javascript">
parent.frames[1].location.
</script>