I am using ajax calls to post data on a server and it is seems to be working in a Mozilla and Chrome however it is not working in IE. I am using below code
$.ajax({
type: 'POST',
url: 'https://xxxxxx',
dataType: 'json',
data: data,
processData: false,
contentType: 'application/json',
crossDomain: true,
xhrFields: {
withCredentials: true
},
success: success,
error:error
});
Every time I am getting below error on IE console XMLHttpRequest: Network Error 0x80070005, Access is denied.
Please help!!