JavaScript document.write() Method

You are Here:

JavaScript document.write() Method

The document.write() method writes a string of text or HTML expressions to a document.

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.

Warning: The document.write() method will delete all existing HTML, if it is used after a fully loaded HTML document.

Example

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

Syntax

document.write()

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