The DOMImplementation.createDocumentType() method returns a DocumentType object which can either be used with DOMImplementation.createDocument upon document creation or can be put into the document via methods like Node.insertBefore() or Node.replaceChild().
Syntax
var doctype = document.implementation.createDocumentType(qualifiedNameStr, publicId, systemId);
Parameters
qualifiedNameStr- Is a
DOMStringcontaining the qualified name, likesvg:svg.
publicId- Is a
DOMStringcontaining thePUBLICidentifier.
systemId- Is a
DOMStringcontaining theSYSTEMidentifiers.
Example
var dt = document.implementation.createDocumentType('svg:svg', '-//W3C//DTD SVG 1.1//EN', 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd');
var d = document.implementation.createDocument('http://www.w3.org/2000/svg', 'svg:svg', dt);
alert(d.doctype.publicId); // -//W3C//DTD SVG 1.1//EN
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'DOMImplementation.createDocumentType' in that specification. |
Living Standard | No change from Document Object Model (DOM) Level 3 Core Specification |
| Document Object Model (DOM) Level 3 Core Specification The definition of 'DOMImplementation.createDocumentType' in that specification. |
Obsolete | No change from Document Object Model (DOM) Level 2 Core Specification |
| Document Object Model (DOM) Level 2 Core Specification The definition of 'DOMImplementation.createDocumentType' in that specification. |
Obsolete | Initial definition. |
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
createDocumentType | Chrome Full support Yes | Edge Full support 12 | Firefox Full support Yes | IE Full support 9 | Opera Full support Yes | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support Yes | Opera Android Full support Yes | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
See also
- The
DOMImplementationinterface it belongs to.
