HTML DOM implementation Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML DOM implementation Property

❮ Document Object

Example

Return this document's DOMimplementation object:

var imp = document.implementation;
Try it Yourself »

Definition and Usage

The implementation property returns the DOMimplementation object that handles this document, as a DocumentImplementation object.


Browser Support

Property
implementation Yes Yes Yes Yes Yes

Syntax

document.implementation

Technical Details

Return Value: The document's implementation object, as a DocumentImplementation object
DOM Version Core Level 1 Document Object

❮ Document Object