Open In App

HTML DOM strictErrorChecking Property

Last Updated : 13 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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.


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads