Open In App

HTML DOM isDefaultNamespace() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM isDefaultNamespace() method is used to return boolean true if the specified namespace is default otherwise, it returns boolean false. The URI of the namespace required can be checked using the namespaceURI string. 

Syntax:

node.isDefaultNamespace

Return Value: It returns a boolean value true if the namespace is default, otherwise it returns false. 

Example: Return DefaultNamespace property. 

html




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML | DOM isDefaultNamespace() Method
    </title>
</head>
  
<body>
    <h1>
      <center>
        Geeks 
        <button onclick="space()">
          Press
        </button>
      </center
    </h1>
  
    <h4>
      Clicking on the 'Press' button will display
      if the specified namespace is default.
    </h4>
  
    <p id="demo"></p>
  
    <script>
        function space() {
  
            // Access and return default namespace property.
            var d =
                document.documentElement;
            var x =
                d.isDefaultNamespace(
                    "https://ide.geeksforgeeks.org/tryit.php");
  
            document.getElementById("demo").innerHTML =
                x;
        }
    </script>
  
</body>
  
</html>


Output: 

Before clicking on the button:

  

After clicking on the button:

  

Note: Internet Explorer8 and earlier versions don’t support this method. 

Browser Support: The browsers supported by DOM isDefaultNamespace() method are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 9.0 and above
  • Firefox 1 and above
  • Opera 12.1 and above
  • Safari 3 and above


Last Updated : 13 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads