Parent window : Frame FrameSet : HTML JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » HTML » Frame FrameSet »

 

Parent window



    
<html>
<frameset rows="100,*" frameborder="yes" border="20px" framespacing="5" cols="*"
   <frame name="topFrame" scrolling="NO" noresize src="http://www.navioo.com">
   <frameset cols="41%,*" border="15px" framespacing="0" rows="*"
       <frame name="topFrame" src="myInnerFrame.htm">
       <frame name="mainFrame" src="http://www.navioo.com">
   </frameset>
</frameset>
</html>
<!--
Contents of myInnerFrame.htm:
<html>
<head>
<script language="JavaScript">
function P1() {
   alert(window.parent.mainFrame.document.all.CBP.innerText);
}
</script></head>
<body style="background-color:white;">
<input type="button" value="View Content of CBP" onclick="P1();">
</body>
</html>
-->
    
      
      



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo HTML
» Frame FrameSet