This document provides an introduction to XML DOM (Document Object Model) including:
- XML DOM defines a standard for accessing and manipulating XML documents and is a W3C standard.
- The DOM presents an XML document as a tree structure with elements, attributes, and text as nodes.
- The DOM is separated into three levels: Core DOM, XML DOM, and HTML DOM.
- DOM properties and methods allow accessing and modifying nodes, and DOM parsing converts an XML document into accessible DOM objects.