Document Object
The open() method opens an output stream to collect the output from any document.write() or document.writeln() methods.
Once all the writes are performed, the document.close() method causes any output written to the output stream to be displayed.
Note: If a document already exists in the target, it will be cleared. If this method has no arguments, a new window (about:blank) is displayed.
| Parameter | Description |
|---|---|
| MIMEtype | Optional. The type of document you are writing to. Default value is "text/html" |
| replace | Optional. If set, the history entry for the new document inherits the history entry from the document which opened this document |
![]()
The open() method is supported in all major browsers.
Open an output stream, add some text, then close the output stream:
Open an output stream (in a new window; about:blank), add some text, then close the output stream:
Document Object
Your message has been sent to W3Schools.