Having some problems getting my cross server request to work in IE. Is it possible at all? I've read up on Cross Server Requests, and it seems it depends completely on the browser. If I run the function below in any other browser bar IE, it returns the 'success' function, IE just returns the 'error' function.
My question is, is it possible to get this to return 'success' in IE at all?
I've stripped down my JS code to the following:
jQuery.support.cors = true;
$.getJSON($this.attr('action'))
.error(function() {
console.log('ERROR');
}).success(function() {
console.log('success');
});
Thanks, Christian