How to parse xmlString with jquery without ajax call?

escaddich

New Member
I want to parse xmlString with jquery but without using ajax call ?xmlString = \[code\] <?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>\[/code\]I want to parse above xml for IDs?
4 , 192.... How to parese xmlString with jquery.Xml parsing with jquery+ ajax callIn my case I dont have any xml file ex. a.xmlOn some operation I got xmlString which I want to parse for IDAny help or guidance in this matter would be appreciated
 
Back
Top