I have the following code
$.ajax({type: "GET",
url: "/" + filename,
dataType: "xml",
cache: "false",
success: function(xml)
{
/* Parsing code here */
}});
In Chrome etc the requests are not cached, however they are in IE. Am I constructing my request properly?
Perhaps it is the mimetype of the xml file you are returning? http://www.nerdydork.com/ie-json-caching-bug.html
One commenter on my blog suggested adding a time string to the json request:
cache
should be a boolean, not a string: