We discovered our ajax call to a JSON resouce wasn't working in IE9, and that we had to use the X Domain Request API. But my call is simply not calling the "onload" function unless the browser is set to compatibility mode- which is not an option.
var xdr = new XDomainRequest(); // Use Microsoft XDR
xdr.open('get', uri);
xdr.onload = function () {
//debugger;
var JSON = $.parseJSON(xdr.responseText);
if (JSON == null || typeof (JSON) == 'undefined') {
JSON = $.parseJSON(data.firstChild.textContent);
}
ieCallback(JSON);
};
xdr.onerror = function () {
_result = false;
};
xdr.send();