Web/API/DOMImplementation/createDocumentType

From Get docs

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 DOMString containing the qualified name, like svg:svg.
publicId
Is a DOMString containing the PUBLIC identifier.
systemId
Is a DOMString containing the SYSTEM identifiers.

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
DOMThe 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 SpecificationThe 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 SpecificationThe definition of 'DOMImplementation.createDocumentType' in that specification. Obsolete Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
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