What is the jQuery alternative to the following JavaScript code?
var xmlobject = (new DOMParser()).parseFromString(xmlstring, \"text/xml\");
var $parsedXml = $(xmlstring);
For exmaple, if you have something like
as your xmlstring, you could do
xmlstring
var prop1 = $(xmlstring).find('#prop1').attr('value');
to get the value of the object property.