Dom Parser
# XML DOM Parser
* * *
Most browsers come with built-in XML parsers for reading and manipulating XML.
The parser converts XML into JavaScript-accessible objects (XML DOM).
* * *
## XML Parser
The XML DOM includes methods (functions) for traversing the XML tree, accessing, inserting, and deleting nodes.
However, before accessing and manipulating an XML document, it must be loaded into the system.
YouTip