When using jQuery Ajax, I get parseerror in IE 6, Firefox works fine.
My code looks like this:
$.ajax({
url: 'test.xml',
type: 'GET',
dataType: 'xml',
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('Error: ' + textStatus + ", " + errorThrown);
},
success: function(xml){
...
}
});
Output: "Error: parsererror, undefined"
source
share