Hello,
I'm diving into javascript and one of the concepts I'm playing with is XML parsing. I see that IE has its own parser, as does Firefox. I also see XML parsers built into some of the javascript frameworks like JQuery. My questions are...
- What's the most common or best way to parse XML using javascript these days?
- If I use the built-in MS and Firefox parsers, does that mean my code is only guaranteed to work in IE and Firefox, or will the other popular browsers work as well?
Thanks in advance for all your wisdom!
EDIT* I just found this discussion, looks very similar to my question..