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?
cache
should be a boolean, not a string:
$.ajax({type: "GET",
url: "/" + filename,
dataType: "xml",
cache: false,
success: function(xml){
/* Parsing code here */
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With