Create frameset : Frame FrameSet : HTML : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  HTML   » [  Frame FrameSet  ]   
 



Create frameset

Please note that some example is only working under IE or Firefox.

<!-- ***********************************************************
Example 5-3
"Dynamic HTML:The Definitive Reference"
2nd Edition
by Danny Goodman
Published by O'Reilly & Associates  ISBN 0-596-00316-1
http://www.oreilly.com
Copyright 2002 Danny Goodman.  All Rights Reserved.
************************************************************ -->
<html>
<head>
<script language="JavaScript" type="text/javascript">
<!--
function blank() {
    return "<html></html>";
}
//-->
</script>
</head>
<frameset cols="100,*">
    <frame name="navBar" src="javascript:parent.blank()">
    <frameset rows="70%,30%">
        <frame name="main" id="main" src="javascript:parent.blank();">
        <frame name="instrux" id="instrux"  src="javascript:parent.blank();">
    </frameset>
</frameset>
</html>


           
       
Related examples in the same category
1.  Parent window
2.  Window top frame
3.  Frame 'cols' Example
4.  'rows' Example
5.  'noResize' Example
6.  'frameElement' Example
7.  'frameBorder' Example
8.  'frameSpacing' Example
9.  Frameset in Javascript
10.  Hide and Show Frame ExampleHas Download File
11.  Handling Load Events in a Layout Document
12.  Frameset for document.URL Property Reader
13.  Creating a Blank Frame
14.  A blank frameset with Javascript
15.  Get frame size
16.  Make new frameset
17.  Frameset NavigatorHas Download File
18.  Frameset show and hideHas Download File
19.  Multiple Search EngineHas Download File
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.