<!-------index.html------->
<html>
<meta http-equiv="content-type" content="html/text;charset=gb2312">
<frameset cols="50%,*"> 
  <frame name="left" src="left.html">
  <frame name="right" src="right.html">
</frameset>
</html>
<!--------end-------------><!--------left.html------->
<html><body>
<input type=button value="viewdiv" onclick="alert(parent.right.div1.innerHTML);">
</body></html>
<!--------end-------------><!--------right.html------>
<html><body>
<div id=div1>
   <span>hello</span><br>
   i am a boy!<br>
</div>
</body></html>
<!--------end------------->