Skip to main content

All Questions

41 votes
5 answers
99k views

Access denied in IE 10 and 11 when ajax target is localhost

I'm trying to do a ajax call between a server (http) that is on internet. And target that to my own localhost. FF/Chrome/ ETC... works. It's ONLY an IE issue. IM USING IE 11 AND 10. The request is ...
narc88's user avatar
  • 531
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
20 votes
1 answer
2k views

Why does IE 11 browser randomly have Content-Length=0 for jQuery AJAX POST requests?

I'm working on Spring MVC based webapp. Following are my environment details :- Java 1.8.0_162 (64 bit), Spring 4.3.1, Apache Tomcat 8.0.49, Waffle-1.8.3 for SSO, jquery-1.11.3 and Google Charts API....
Shiva's user avatar
  • 609
11 votes
3 answers
14k views

IE11 returns status 0 during Ajax POST operation from an iFrame (XMLHttpRequest: Network Error 0x2ee4)

It seems that IE11 version 11.0.7 (KB2929437 on Win7, KB2919355 on Win 8.1) has a problem when performing an Ajax POST operation. The operation returns status 0 and on an F12 console, the following ...
nikoniko's user avatar
  • 833
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
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
7 votes
0 answers
3k views

IE11 XMLHttpRequest: Network Error 0x2eff, Could not complete the operation due to error 00002eff

I have an ajax POST request like below, $.ajax({ url: url, type:"POST", contentType:"application/html; charset=utf-8", dataType:"html", success: function(data) { .... .... }, error: function() { ........
explorer's user avatar
  • 1,094
6 votes
1 answer
2k views

Ajax call working on Google Chrome but not on IE 11

I am developing a RESTFul web service project which has a POJO as below: @XmlRootElement public class Input { //variable declarations public Input(){ //default constructor } //...
tpsaitwal's user avatar
  • 422
6 votes
2 answers
7k views

jQuery .html() function doesnt work in IE 11

In my .net MVC3 web application i have an ajax call that returns some html code. I pass this html into a div like so: $.ajax({ url: 'controller/action', data: {id: id,}, ...
Notaras's user avatar
  • 687
6 votes
1 answer
1k views

IE11 GZIP slow for AJAX requests

So this is a bit of a weird issue and I'm really searching for some best practices and potential solutions here. Background: I'm working on a very substantial enterprise application. It's a single ...
Thomas W Tupper's user avatar
5 votes
1 answer
5k views

jQuery ajax request - IE11 Access is denied

The question I'm making an ajax request via jQuery using the following function: function ajaxRequest(requestName,responseFunction,parameters) { console.log('Making request ' + requestName); var ...
Ben's user avatar
  • 4,807
5 votes
1 answer
4k views

JavaScript in IE11 giving me script error 1003

I have a site with an accordion and some javascript. In Firefox everything is working as it should, but in IE11 I get the error SCRIPT1003: Expected ':' I narrowed it down to this piece of code in ...
notaverygoodprogrammer's user avatar
5 votes
1 answer
5k views

Ajax POSt not working in IE11

I have a button in my webpage which calls an ajax method a s below $.ajax({ cache: false, type:'POST', data: 'type='+userType +'&user='+user , url:' ".\yii\...
Vimla S. Naik's user avatar
4 votes
1 answer
422 views

Browsers continue to perform Javascript after "PageUnload" & new "PageLoad"

We have the following AJAX throttler. This was implemented to be able to perform many (20+) ajax requests for one page without the remainder timing out just because the first X requests took a total ...
theB3RV's user avatar
  • 924
4 votes
1 answer
254 views

GET from IE11 to google doesn't work

I'm developing an extension for IE11 and as part of it I'm using an xhr (GET) to Google's settings page. The code runs on the background page. These are the details that I'm passing - var details =...
alexunder's user avatar
  • 2,155

15 30 50 per page
1
2 3 4 5
7