I have below example made in jsfiddle which works perfectly in Firefox 6 and chrome but not in IE8. How can I resolve this issue?
var xml = "<Response> <isSuccess>true</isSuccess> <operation>viewall</operation> <message>No configurations were found for this project</message></Response>";
alert($(xml).find('message').text());
you need to use
.parseXMLhere is the fiddle http://jsfiddle.net/szVKD/1/
jquery parse xml