Using document.write() on Another Window : JavaScript DHTML examples (example source code) » Development » Document

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   Development   » [  Document  ]   
 



Using document.write() on Another Window

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

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 

Publisher: John Wiley & Sons CopyRight 2001
ISBN: 0764533428

*/



<HTML>
<HEAD>
<TITLE>Writing to Subwindow</TITLE>
<SCRIPT LANGUAGE="JavaScript">
var newWindow
function makeNewWindow() {
    newWindow = window.open("","","status,height=200,width=300")
}
function subWrite() {
    // make new window if someone has closed it
    if (newWindow.closed) {
        makeNewWindow()
    }
    // bring subwindow to front
    newWindow.focus()
    // assemble content for new window
    var newContent = "<HTML><HEAD><TITLE>A New Doc</TITLE></HEAD>"
    newContent += "<BODY BGCOLOR='coral'><H1>This document is brand new.</H1>"
    newContent += "</BODY></HTML>"
    // write HTML to new window document
    newWindow.document.write(newContent)
    newWindow.document.close() // close layout stream
}
</SCRIPT>
</HEAD>
<BODY onLoad="makeNewWindow()">
<FORM>
<INPUT TYPE="button" VALUE="Write to Subwindow" onClick="subWrite()">
</FORM>
</BODY>
</HTML>
Related examples in the same category
1.  Output HTML in JavaScript
2.  Display info in a new page
3.  Recursively reverse all nodes beneath Node n, and reverse Text nodes
4.  Reverse the order of the children of Node (document)
5.  Open a new document and add some text
6.  Get element by name: getElementsByName()
7.  Get a specified element using getElementById()
8.  Title of a document
9.  Referrer of a document (URL of the document)
10.  Hide Email Address
11.  Convert space to URL encode
12.  document last Modified Property in Another Format
13.  Checking document referrer
14.  Make button (control) visible or invisible
15.  Opening a New URL
16.   HTML Page with Immediate Script Statements
17.  Using document.write() on the Current Window
18.  Methods and Properties of the Document Object








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