The following AJAX call is failing in IE.
$.ajax({ url:\"{{SITE_URL}}/content/twitter.json\", dataType:\"json\", error:function(xhr, status, erro
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.