I am running a PHP file so it's contents are in a div - then displaying the contents in a bootstrap modal. For some reason IE version 9 and 11 do not refresh the div and the modal shows old data. All other browsers work nicely.
function showRealSpadTable(realSpadDetails) {
var tableDetails = realSpadDetails;
$.post("realSpadTable.php", {tableDetails: tableDetails}, function () {
$("#realSpad").load("realSpadModal.php", function() {
$('#realSpadModal').modal('show');
});
});
}