How to serialize entire XML document into JavaScript array?
- by Jack Roscoe
Hi,
I have a html document which loads an XML document using jQuery
jQuery.ajax( {
type: "GET",
url: example.xml,
etc...
When that XML is loaded I want to serialize the entire XML document into a JavaScript array.
How would I do this?