I am parsing a csv file that's on the server:
var readCSV = function(url){
Papa.parse(url, {
download: true,
header: true,
complete: function(results) {
listen = results.data;
}
});
}
Unfortunately still reads an old file from cache even though I have already replaced it on the server. Is there some way to prevent it from using the cache?