Using document.write() on Another Window : Document « Development « JavaScript DHTML






Using document.write() on Another Window

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