[jQuery] Parse XML with IE
Hi all,
I know IE6 (maybe 7) is known to have limited ability to parse XML but
it seems it can.
After an ajax call, i'd like to parse the xml file like this :
$.ajax({
type: "GET",
url: url,
complete: function(response){
var rootNode = $("/rootNode", response.responseXML);
}
});
Is there a hack?, is there something specific about the XML file it can
parse (ex: no node attributes).
Regards,
Phil