Open In App
Related Articles

HTML DOM documentMode Property

Improve Article
Improve
Save Article
Save
Like Article
Like

The DOM documentMode property in HTML is an IE8 property that is used to detect the document mode used by the browser to render the current page. It returns a different number depending on the mode of the page in which it is being rendered because IE8 can render a page in various different modes depending on the page’s doctype plus the presence of certain HTML element’s. This property returns certain values depending on which version of IE we are using.

  • If the page is running in IE5 then value displayed will be – 5
  • If the page is running in IE7 then value displayed will be – 7
  • If the page is running in IE8 then value displayed will be – 8

Note:

By default, the page is rendered in IE5 mode if !DOCTYPE is not specified.

Syntax:

document.documentMode

Example:

html




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM documentMode Property</title>
</head>
 
<body style="text-align: center;">
    <h1 style="color:green;">GeeksforGeeks</h1>
    <h2>DOM documentMode Property</h2>
    This document is displayed in IE
    <span id="geek"></span> mode.
    <script>
        let docMode = document.documentMode;
        document.getElementById("geek").innerHTML =
                                        docMode;
    </script>
</body>
 
</html>


Output:

documentmode

Supported Browsers: The documentMode property is only supported by Internet Explorer.

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 02 Aug, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials