'parent' Example : parent « Javascript Properties « JavaScript Reference

'parent' Example


<!-- 
Example revised from 

The Web Programmer's Desk Reference
by Lazaro Issi Cohen and Joseph Issi Cohen 

ISBN: 1593270119
Publisher: No Starch Press 2004
-->    

<html>
<frameset rows="100,*" frameborder="yes" border="20px" framespacing="5" cols="*"> 
   <frame name="topFrame" scrolling="NO" noresize src="http://www.java2s.com">
   <frameset cols="41%,*" border="15px" framespacing="0" rows="*"> 
       <frame name="topFrame" src="myInnerFrame.htm">
       <frame name="mainFrame" src="http://www.java2s.com">
   </frameset>
</frameset>
</html>






Contents of myInnerFrame.htm:
<html>
<head>
<script language="JavaScript">
function function1() {
    alert(window.parent.mainFrame.document.all.CBP.innerText);
}
</script>
</head>
<body style="background-color:white;">
<input type="button" value="View Content of CBP" onclick="function1();">
</body>
</html>

    
      
      








Related examples in the same category

1.'parent' Syntax and Note
2.'parent' is applied to