$.ajax({
url: '/DisplayMissingTables/json/err_data.json',
dataType: 'json',
async: false,
success: function(data) {
var jsonfile = data;
console.log(jsonfile);
}
});
When my json file is updated it still shows the old data. What should I do? I want to display the new data that is updated in the file. Thank you!