Parse XML in Javscript (pure?)

admin

Administrator
Staff member
I'm looking for a way to parse XML in javascript, WITHOUT:
1) Being browser specific
2) Creating ActiveX objects

So far I have found 2 parser written purely in javascript:
XMLP - <!-- m --><a class="postlink" href="http://www.gazingus.org/html/XML_Pa...JavaScript.html">http://www.gazingus.org/html/XML_Pa...JavaScript.html</a><!-- m -->
and
XML for Script - <!-- m --><a class="postlink" href="http://sourceforge.net/projects/xmljs/">http://sourceforge.net/projects/xmljs/</a><!-- m -->

I've tested XMLP and it is much faster than XML for Script when parsing the document.

These both satisfy my needs, except when compared with, say MSXML, they are both VERY SLOW.

Does anyone know of another way which will not be browser or system dependent, and which does not instantiate an ActiveX object??
 
Back
Top