Im opening XML-files using jquery ajax. I would like to debug an error in IE7, but currently all i get in the alert is:
"Error: error, [object Error]"
My error callback:
error: function (a, b, c) {
alert('Error: ' + b + ", " + c);
}
My guess would be that b is an object that contains some info, but i cant inspect object in IE7, since it has no console. Anyone know what the object properties are? I would like to know what went wrong in the XML import 🙂
Thanks
Try this:
the responseText will contain a error message.