Open In App

HTML DOM Node isSupported() Method

The isSupported() method in HTML DOM is used to check the specified feature is supported by the specified node or not. This method is not supported by many browsers. It returns true if the feature is supported else it returns false. 

Syntax:



node.isSupported(feature, version)

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

Parameters Used :



Below program illustrates the Node isSupported() method in HTML DOM: 

Example: This example check if the feature Core, version 2.0, is supported for the <button> element or not. 




<!DOCTYPE html>
<html>
  
<head
    <title
        HTML DOM Node isSupported() method
    </title
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
      
    <h2>Node isSupported() method</h2>
      
    <p>
        Check feature Core XML DOM Level 2 is
        supported for the button element or not
    </p>
  
    <button onclick = "myGeeks()">
        Click Here!
    </button>
  
    <p id = "GFG"></p>
  
  <script>
      function myGeeks() {
        var item = document.getElementsByTagName("BUTTON")[0];
        var x = item.isSupported("Core", "2.0");
        document.getElementById("GFG").innerHTML = x;
      }
  </script>
</body>
  
</html>   

Output: Before Click on the button:

  

After click on the button:

  

Supported Browsers: The browser supported by Node isSupported() method are listed below:


Article Tags :