Hi everyone,
I make an ajax call with jQuery's "$.get" that returns a string to a function. This string contains both xml and html, and I have to extract some part of the html with jQuery's selectors, for example:
$.get(
url,
function (xml) {
$(xml).find('something').whatever();
}
);
In that case, everything works fine with Firefox and cie, assuming that the xml var is a string (headers text/html sent in php to be sure). But in IE, it can't find the "something" tag.
Any idea? This is very annoying!