CORS works perfectly in my application right now for Chrome, Firefox. Using this plugin https://github.com/MoonScript/jQuery-ajaxTransport-XDomainRequest
I was able to get CORS requests working in IE also like so:
$.ajax({
url: url,
type:"POST",
dataType: "json"
});
However when I try to send data in the POST request, such as:
$.ajax({
url: url,
type:"POST",
dataType: "json",
data: {test: 5}
});
It does not work. Has anyone managed to get IE to make CORS requests that have POST data in them?
Thanks!