The following ajax call is failing in IE.

$.ajax({
    url:"{{SITE_URL}}/content/twitter.json",
    dataType:"json",
    error:function(xhr, status, errorThrown) {
		alert(errorThrown+'\n'+status+'\n'+xhr.statusText);
	},
    success:function(json) {
               ...Snip...
	}
});

The error function returns

Undefined
parsererror
OK

No request is made to the server so i dont think its a problem with the json.

Fixed, See #1351389

link|improve this question

It's working on other browsers? – Leandro Ardissone Jan 8 '09 at 20:53
feedback

7 Answers

For the caching problem why don't you simple use the cache: false parameter?

$.ajax({ 
    url: "yoururl",
    cache: false,
    ....
link|improve this answer
Will do, cheers for the tip – Sam Jan 11 '09 at 23:20
1  
It seems pretty odd to me that this isn't set to "false" by default... – Buchannon Nov 1 '11 at 22:57
1  
Cheers, solved it for me! I am curious as to why IE doesn't actually use the version that it caches... – Lea Hayes Nov 17 '11 at 16:44
feedback
up vote 28 down vote accepted

Fixed, I changed the content-type from application/json; charset=utf8 to just plain application/json.
I hate IE :)

Also to avoid IE super-caching try this:

var d = new Date()
    $.ajax({
        url:"{{SITE_URL}}/content/twitter.json?_="+d.getTime(), 
...Snip...

That way each request is a new url for IE to get :D

link|improve this answer
14  
God, am I glad I found this answer. This thing has cost me days of my life that Microsoft won't give me back. Just to reiterate: I effing hate IE, too. – Lenni Nov 10 '09 at 21:11
3  
Dear IE, I hate you. Dear @Sam, I love you. – Gabe Apr 26 '10 at 15:10
1  
I hate IE too... – Ronnie Chester Lynwood Jan 2 at 2:07
1  
and i hate IE too :D – Shaheer Jan 3 at 10:46
1  
Also possible with jQuery.Ajax option "cache". api.jquery.com/jQuery.ajax/#options If set to false, it will force requested pages not to be cached by the browser. Setting cache to false also appends a query string parameter, "_=[TIMESTAMP]", to the URL. – John Korsnes Feb 2 at 14:50
show 4 more comments
feedback

is this a copy/paste? the one thing that gets me all the time is leaving the last ',' in an object constructor. that is, most browsers JS accept:

o = { a:1, b:2, c:3, };

but IE chokes on this because the comma after the last item. change it to:

o = { a:1, b:2, c:3 };

and it works.

link|improve this answer
feedback

IE caches AJAX requests really aggressively (more so than Firefox, anyway). You need to set the Cache-Control headers in the response appropriately if this is not right for your site.

link|improve this answer
1  
Good point, ive added ?_=1234 on the end of it and ie now request the page every time. Still same problem though :( – Sam Jan 8 '09 at 22:14
feedback

One major problem with statically generated JSON and IE are the leading "commas", for examples this throws an error in IE:

{
    "one":"hello",
    "two":"hi",
 }

Note the last comma.

link|improve this answer
feedback

What is the {{SITE_URL}} chunk giving is about. Try looking at the code in view source code of the browser. If the {{SITE _URL}} chunk has a trailing slash and that would make the request url:

http://modomain.com//content/twitter.json

Which could creep IE out?

link|improve this answer
feedback

IE: JSON not defined error resolved at

http://funkatron.com/site/comments/safely-parsing-json-in-javascript/

by using dataType: "json" and avoid parsing

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.