publicId
Property of dom/DocumentTypedom/DocumentType
Syntax
var result = element.publicId;
element.publicId = value;
Examples
The following example shows the publicId 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: PublicId</title>
<meta name="x-ua-compatible" content="ie=9">
<script type="text/javascript">
function showInfo() {
var s = document.doctype.publicId;
// Displays "-//W3C//DTD HTML 4.01//EN"
alert( s );
}
</script>
</head>
<body>
<button onclick="showInfo();">Click Me!</button>
</body>
</html>
Notes
Remarks
The value of the publicId property corresponds to the Availability, Registration, Organization, Type, and Language attributes of a !DOCTYPE directive.
Syntax
Standards information
See also
Related pages
- DocumentTypeDocumentType
- namename
- systemIdsystemId
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]