The following AJAX call is failing in IE.
$.ajax({
url:\"{{SITE_URL}}/content/twitter.json\",
dataType:\"json\",
error:function(xhr, status, erro
In newer versions of internet explorer (IE7) it is necessary to write the next line before calling $.ajax, otherwise it would never call the function:
$.ajaxSetup({ cache: false }); //this line before $.ajax!!!
$.ajax({
//codes
//codes
//codes
});
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.