JavaScript XML Parser
This is a simple character-based XML parser written in JavaScript.
This library provides functionality to a client-side web page to read XML content (from the same page or via AJAX) into
a local object that provides basic traversal of the XML stream. This allows the processing of XML data to be done on
the client, instead of on the web server (saving performance). It provides basic XML support, but does not currently
have any XSD or DTD format validation code included in it. (It is most useful when you know the XML data is already
well-formed.) It does include an extremely early version of an XSLT transformer, but it is not ready for production use.