I\'m new to jQuery and would like to parse an XML document.
I\'m able to parse regular XML with the default namespaces but with XML such as:
As of beginning of 2016, for me the following syntax works with jQuery 1.12.0:
.find("z\\:row")
.find("z\\:row")
.find("row")
The syntax .find("[nodeName=z:row]")
doesn't work in any of the browsers mentioned above. I found no way to apply a namespace in Chrome.
Putting it all together, the following syntax works in all of the browsers mentioned above: .find("row,z\\:row")