The following AJAX call is failing in IE.
$.ajax({ url:\"{{SITE_URL}}/content/twitter.json\", dataType:\"json\", error:function(xhr, status, erro
For the caching problem why don't you simple use the cache: false parameter?
cache: false
$.ajax({ url: "yoururl", cache: false, ....