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?