[jQuery] xml not working in IE. what am I missing?
I got a serious problem, and it's not the first time I'm facing it.
doing an $.ajax() request with dataType: 'xml' won't get any (!)
results in IE.
other times I got around it using dataType: 'json", but this time I
cannot.
the xml I use is arriving from a java servlet and I cannot modify it.
what could I do?
my code is fairly simple:
$.ajax({
url:'out.xml', /*this is a test file located on my machine*/
dataType: 'xml',
success: function(data){...
on FF it works like a charm...
thank you
andrea