When using jQuery Ajax, I am receiving a parseerror in IE 6, Firefox works just fine.
My code is like this:
$.ajax({
url: 'test.xml',
type: 'GET',
dataType: 'xml',
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('Error: ' + textStatus + ", " + errorThrown);
},
success: function(xml){
...
}
});
The output is "Error: parsererror, undefined"