name
Property of dom/DocumentTypedom/DocumentType
Syntax
var result = element.name;
element.name = value;
Examples
The following example shows the name property with respect to a !DOCTYPE directive.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>IE9 Doctype Sample: Name</title>
<meta name="x-ua-compatible" content="ie=9">
<script type="text/javascript">
function showInfo() {
var s = document.doctype.name;
// Displays "HTML"
alert( s );
}
</script>
</head>
<body>
<button onclick="showInfo();">Click Me!</button>
</body>
</html>
Notes
Remarks
The value of the name property corresponds to the TopElement attribute of a !DOCTYPE directive.
Syntax
Standards information
See also
Related pages
- DocumentTypeDocumentType
- publicIdpublicId
- systemIdsystemId
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]