Skip to main content

All Questions

1 vote
0 answers
707 views

IE 11 Responds with "405 Not Allowed" to XMLHttpRequest

I have the following AJAX request that is running successfully for all browsers on our site but returning a 405 for IE 11. I noticed here: http://caniuse.com/#feat=xhr2 that IE 11 has some issues with ...
mmilleruva's user avatar
  • 2,170
0 votes
0 answers
716 views

Javascript ajax call get access is denied error in IE11

I am using the below code to try to upload files to AWS S3 server: function ajaxUpload(fd, file, signedFormData, nameOfFile) { var IsCompletedFired = 0; $.support.cors = true; ...
Lance Shi's user avatar
  • 1,177
0 votes
2 answers
949 views

IE11 caching breaking status page

I have a status page that needs to be constantly refreshed. It makes ajax calls to a Java server and gets the updated statuses. It works perfectly in Chrome, but in IE11 it is not refreshing when I ...
mcgregors's user avatar
  • 123
22 votes
2 answers
34k views

JavaScript Ajax SCRIPT1003: Expected ':' in IE 11

var url="tabla.php"; $.ajax({ type: "POST", url:url, data:{place,names,repor}, success: function(datos){ $('#tabla').html(datos); } This code ...
Mario Zanetta's user avatar
2 votes
2 answers
2k views

Intermittent AJAX file upload failure in IE11 - F12 tools show "Pending..." indefinitely

I'm adding a file upload feature to an SPA application. The file uploads work flawlessly in the latest versions of Chrome and Firefox, but IE 11 intermittently (maybe 5%-10% of the time) fails to ...
Nathan Friend's user avatar
0 votes
0 answers
841 views

jquery $.ajax request remains pending in IE 11 alone

Am using polling method in my project. For that, process makes an asynchronous ajax call to server until get the result. I could able to process the request and got response from in all browsers(all ...
Ramesh RR's user avatar
9 votes
2 answers
11k views

IE 11 error - Access is denied - XMLHttpRequest

I'm having a peculiar error with IE11 and ajax. For nearly all the requests I make using the code below, everything is fine, yet when I try use in conjunction with a copy+paste method, it returns an ...
Ben's user avatar
  • 4,807
1 vote
0 answers
595 views

internet explorer 11 doesn't resolve POST variables through AJAX request

I noticed that my POST request using AJAX on IE simply fails. What I mean by fails is that it throws an error that the key wasn't found: $_POST['myKey']. However, the same code works fine in Opera, ...
kfirba's user avatar
  • 5,353
7 votes
2 answers
5k views

Why does IE11 send 'pragma: no-cache' in request header for ajax requests?

I am testing my web page on IE11. I am making some ajax calls and setting response headers as Cache-Control: private, max-age=21600; Though everytime making a request, IE11 sets Pragma:no-cache ...
sonam's user avatar
  • 905
1 vote
1 answer
650 views

IE11 JS XMLHTTPRequest/XMLParser discards <body> attributes

So I have an AJAX call which returns a complete XHTML document. In IE, when I get the XMLDocument from ajax.responseXML, all of the attributes on the body element are missing. Creating a new ...
Adam Martinson's user avatar