XML DOM DOMImplementation object
- Previous Page DOM DOMException
- Next Page DOM DOMParser
The DomImplementation object can perform any operation unrelated to any instance of the Document Object Model.
DomImplementation object
The DomImplementation object can perform any operation unrelated to any instance of the Document Object Model.
The DomImplementation interface is a placeholder that stores non-exclusive elements for any specific Document Objectto the DOM implementation is a 'global' method. It can be accessed by any Document Objectobtained through the implementation attribute of the Document Object to refer to the DomImplementation Object.
IE: Internet Explorer: F: Firefox: O: Opera: W3C: World Wide Web Consortium (Internet Standard)
Methods of the DomImplementation Object
Method | Description |
---|---|
createDocument() | Create a new Document object with the specified root element. |
createDocumentType() | Create an empty DocumentType node. |
getFeature() | Returns an object that can execute the API defined by the features and versions. |
hasFeature() | Check if the DOM implementation can execute the specified features and version. |
- Previous Page DOM DOMException
- Next Page DOM DOMParser