This question is locked. New answers and comments are not allowed.
I'm trying to display a custom error from the server in an OnError handler like so
function Grid_onError(e) { if (e.XMLHttpRequest.status == "500") { notify(e.XMLHttpRequest.responseText); e.preventDefault(); }}It renders fine in most browsers except IE doesn't like me doing this (apparently it's not using jQuery's Xhr that detects and handle's IE's security model). Is there a way to get the original jQuery XHR object instead of the native XHR?