JavaScript document.open() Method

You are Here:

JavaScript document.open() Method

The document.open() method opens a document for writing.

Note: If the document.write() call is embedded within an inlined HTML <script> tag, then it is necessary to call document.open() method before writing to a document and document.close() after writing to a document.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <script> document.open(); document.write("<h1>This is heading</h1>"); document.close(); </script> </body> </html>

Syntax

document.open()

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author