I want to parse xmlString with jquery but without using ajax call ?
xmlString =
<?xml version="1.0" encoding="UTF-8"?>
<root>
<item id="4" parent_id="0" state="close">
<content><name>Charles Madigen</name></content>
</item>
<item id="192" parent_id="4" state="close">
<content><name>Ralph Brogan</name></content>
</item>
</root>
I want to parse above xml for IDs?
4 , 192.... How to parese xmlString with jquery.
Xml parsing with jquery+ ajax call
In my case I dont have any xml file ex. a.xml
On some operation I got xmlString which I want to parse for ID
Any help or guidance in this matter would be appreciated