Creating a Blank Frame : JavaScript DHTML examples (example source code) » HTML » Frame FrameSet

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   HTML   » [  Frame FrameSet  ]   
 



Creating a Blank Frame

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

<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!--
function blank() {
     return "<HTML></HTML>"
}
//-->
</SCRIPT>
</HEAD>
<FRAMESET>
    <FRAME NAME="Frame1" SRC="http://www.java2s.com">
    <FRAME NAME="Frame2" SRC="javascript:parent.blank()">
</FRAMESET>
</HTML>
Related examples in the same category
1.  Frameset in Javascript
2.  Create frameset
3.  Hide and Show Frame Example
4.  Handling Load Events in a Layout Document
5.  Frameset for document.URL Property Reader
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.