Writing to a Document : write « Document « JavaScript Tutorial






Syntax

document.write(value,....)

The write() method appends the comma-separated argument(s) (value) to the document as a string.

If any of the arguments are not strings, they are converted to strings before being appended to the document.

<HTML>
    <HEAD>
        <TITLE>Writing to a Document</TITLE>
    </HEAD>

    <BODY>
        <H1>Writing to a Document</H1>
        <SCRIPT LANGUAGE="JavaScript">
            <!--
            document.write("Hello from JavaScript!")
            //-->
        </SCRIPT>
    </BODY>
<HTML>








14.37.write
14.37.1.Writing to a Document
14.37.2.Use document.write() to output the HTML tags
14.37.3.Use document.write between the HTML tags
14.37.4.Output all array element with document.write
14.37.5.Do calculation in document.write
14.37.6.Escape quotation marks in document.write
14.37.7.Output the HTML tags by using the document.write
14.37.8.document.writeln()