Open In App

HTML DOM window document Property

The HTML DOM window document returns a reference to the document contained in the current window.

Syntax:



doc = window.document;

Return Value: This property returns a reference to the document.

Example: In this example, we will get the title of the document using that document reference.






<title>Window document property</title>
  
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    <p>
        HTML | window document property
    </p>
    <button onclick="Geeks()">
        Click Here
    </button>
    <p id="a">
    </p>
    <script>
        var a = document.getElementById("a");
        function Geeks() {
            console.log(window.document)
            a.innerHTML=window.document.title;
        }
    </script>
</body>

Output:

 

We have a complete list of HTML DOM methods, to check those please go through this HTML DOM Object Complete reference article.

Supported Browsers:

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.

Article Tags :