Open In App
Related Articles

HTML DOM strictErrorChecking Property

Improve Article
Improve
Save Article
Save
Like Article
Like

The DOM strictErrorChecking Property sets or returns whether strict error checking can be enforced on a document or not. It is used to return a boolean value that is true or false. If true it means strict checking can be applied to the documents and if false then it cannot be applied. This property is true by default.

Return Value: Returns a Boolean, true or false.

Syntax

  • To return:
  • documentObject.strictErrorChecking
  • To set:
  • documentObject.strictErrorChecking=true|false

Example:




    
<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML DOM strictErrorChecking Property
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>HTML DOM strictErrorChecking Property</h2>
  
    <p id="geeks" onclick="MyGeeks()">
        Hello Geeks!
    </p>
  
    <script>
        function MyGeeks() {
            document.getElementById("geeks").strictErrorChecking;
        }
    </script>
</body>
  
</html>

Output:

Supported Browsers: The major browsers are not supported by DOM strictErrorChecking Property.

Last Updated : 13 Jun, 2023
Like Article
Save Article
Similar Reads
Related Tutorials