I have a variable string that contains well-formed and valid XML. I need to use Javascript to parse this feed.
How can I accomplish this using (browser-compatible) Javascript?
|
1
|
I have a variable string that contains well-formed and valid XML. I need to use Javascript to parse this feed. How can I accomplish this using (browser-compatible) Javascript?
|
|||
|
|
|
|
Internet Explorer and for example Mozilla based browsers expose diffirent objects for xml parsing, so it's wise to use a javascript framework like JQuery to handle the cross-browsers differences. really basic example:
For more in depth information read this tutorial |
||
|
|
|
Please take a look at this. Its a tutorial on XML DOM parsing. The actual DOM parser differs from browser to browser but the DOM API is standardised and remains the same (more or less). [Update] Alternatively use E4X if you can restrict yourself to Firefox. Its relatively easier to use and its part of Javascript since version 1.6. Here is a small sample usage...
|
|||
|
|
|
|
Most examples on the web (and some presented above) show how to load an XML from a file in a browser compatible manner. This proves easy, except in the case of Google Chrome which does not support the In your case, the scenario is different, because you want to load the XML from a string variable, not a URL. For this requirement however, Chrome supposedly works just like Mozilla (or so I've heard) and supports the parseFromString() method. Here is a function I use (it's part of the Browser compatibility library I'm currently building):
|
||||
|
|
|
Assuming you want to build a DOM from this XML, sadly you need to use browser-specific interfaces. Here is an attempt at a cross-browser function for doing it, however. W3Schools also document the individual browser-specific methods. |
||
|
|
|
|
I've always used the approach below which works in IE and Firefox. Example XML:
JavaScript:
|
||
|
|