var $parsedXml = $(xmlstring);
For exmaple, if you have something like
<object> <property id="prop1" value="myVal" /> </object>
like your xmlstring you could do
var prop1 = $(xmlstring).find('#prop1').attr('value');
to get the value of the property of the object.
source share