Frame One of the most popular uses of loading multiple frames is to load
and change the content of more than one frame at once. Lets say
we have a parent frame:
<html>
<frameset cols="150,*">
<frame src="page1.htm" name="frame1">
<frame src="page2.htm" name="frame2">
</frameset>
</html>
We can add a link in the child frame "frame1" that will change
the contents of not only page1, but page2 too. The below is the
html code for it:
<html>
<body>
<h2>This is page 1 </h2>
<a href="page3.htm"
onClick="parent.frame2.location='page4.htm'">
Click Here</a>
</body>
</html>
Notice: You should use "parent.frameName.location" to access another
frame. "parent" standards for the parent frame containing the frameset
code.
|