[jQuery] $.get - Retrieving XML Docs

[jQuery] $.get - Retrieving XML Docs


Hi,
I'm trying to use the $.get function to bring back a DOM Document which I
can then manipulate with jQuery functions.
In Firefox and Opera this works fine with a function call similar to the one
below; $(xml) will give me a jQuery Dom Document I can work with without
problem.
If I try the same code in IE it just gives me javascript errors (Error:
Object does not supprt this method or property).
$.get(src_xml, function(xml) {
alert("Requested XML: "+ $(xml).toXML());
});
It looks like IE is bringing back a XMLHTTPRequest Object - from which I can
get the XML as text.
How can I get the IE call to bring me back a DOM Document OR how can I turn
the XML String into a working DOM Document for IE with jQuery?
Regards, Richard.
--
View this message in context: http://www.nabble.com/%24.get---Retrieving-XML-Docs-tf2598993.html#a7250417
Sent from the JQuery mailing list archive at Nabble.com.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/