What is DOM?

DOM or Document Object Model is a W3C standard for accessing documents like

XML DOM interfaces

DOM Interfaces The document processing can be done two ways: Through generic Node interface. Specific interface defined for each nodeType. Generic...

The Document interface

The Document interface represents the entire XML document. The document interface has attributes and methods to modify the document information. The Document node can have element,...

The DocumentType interface

  The Document Type defines entities of an XML document. The DocumentType interface...

The Element interface

The Element interface represents an element of an XML document. It contains attributes,...

The Attr interface

The attribute element represents the attribute of an element object. The attrib...

The CharacterData interface (CDATASection)

The CDATASection represents the character data interface. This section is not parsed by the XML parser. The CDATA has the cdata-section as node name and it re...

The Text interface

The Text interface represents a text content of an element or attribute. The nodeType value of Text is 3. The Text does not have any children.