HTML | DOM doctype Property
The DOM doctype property is used to return the doctype of any HTML document. The DocumentType object is the name property used to returns the name of the object. If there is no doctype declared in the document then it returns Null value.
Syntax:
document.doctype
Example:
html
<!DOCTYPE html.5> < html > < head > < title >DOM doctype Property</ title > < style > h1, h2 { color:green; font-weight:bold; text-align:center; } body { text-align:center; } </ style > </ head > < body style="text-align:center;"> < h1 >GeeksForGeeks</ h1 > < h2 >DOM doctype Property</ h2 > < button onclick="geeks()">Submit</ button > < p id="sudo"></ p > < script > function geeks() { var gfg = document.doctype.name; document.getElementById("sudo").innerHTML = gfg; } </ script > </ body > </ html > |
Output:
Supported Browsers: The browser supported by DOM doctype property are listed below:
- Google Chrome 1
- Edge 12
- Internet Explorer 6
- Firefox 1
- Opera 12.1
- Safari 1
Please Login to comment...