Create frameset : JavaScript DHTML examples (example source code) » HTML » Frame FrameSet

JavaScript DHTML
C++
Java Products
Java Articles
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.  Frameset in Javascript
2.  Hide and Show Frame Example
3.  Handling Load Events in a Layout Document
4.  Frameset for document.URL Property Reader
5.  Creating a Blank Frame
6.  A blank frameset with Javascript
7.  Get frame size
8.  Make new frameset
9.  Frameset Navigator
10.  Frameset show and hide
11.  Multiple Search Engine








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