Skip to content
Related Articles
Open in App
Not now

Related Articles

HTML | DOM domain Property

Improve Article
Save Article
Like Article
  • Last Updated : 10 Jun, 2022
Improve Article
Save Article
Like Article

The domain Property is used to return the domain name of the website server that is loaded or running in the current document. 

Syntax:

document.domain 

Note: This property has been DEPRECATED and is no longer recommended.

Return Value: It returns the string value which represented the domain name of the website that is loaded on the current document or it returns a sentinel or null value if the domain name is not identified. 

Example: 

html




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green;">GeeksForGeeks</h1>
        <h2> DOM domain Property</h2>
 
        <button onclick="geeks()">Try it</button>
 
        <p id="sudo"></p>
 
        <script>
            function geeks() {
                var x = document.domain;
                document.getElementById("sudo").innerHTML = x;
            }
        </script>
 
</body>
 
</html>

Output:

  

Supported Browsers: The browser supported by DOM domain property are listed below:

  • Google Chrome
  • Firefox
  • Opera
  • Internet Explorer
  • Safari
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!