Latest web development tutorials

XML DOM implementation Properties

Document Object Reference Document Object

Definition and Usage

implementation process of the document property returns DOMImplementation object.

grammar

documentObject.implementation


Examples

The following code fragment uses loadXMLDoc () to " the Books.xml " into xmlDoc, and return processing of the document DOMImplementation objects:

Examples

xmlDoc=loadXMLDoc("books.xml");

document.write(xmlDoc.implementation);

Output:

[object DOMImplementation]

try it"

Document Object Reference Document Object