I am using angularjs for front end. Sever side node js. Frontend and Backend are different servers. When I post the http method getting error only in IE browsers.
Error Details:
script7002: xmlhttprequest: network error 0x80070005, access is denied.
sample code in angularjs
//var spec = form data:
$http.post('https://test.com/account/register', spec)
// handle success
.success(function(data, status) {
deferred.resolve(data);
})
// handle error
.error(function(data) {
deferred.reject(data);
});
Front design setup in apache.