OK so i have this website, http://www.leinstein.dk.
You will see "Hello World!" This is from ok.php, ive made a script that refreshes ok.php after 10 seconds. Anyways, This does not show in IE.
I dont know why, and i hope you can help me out.
Here's My script:
function ajax_update()
{
cache: false
/* var wrapperId = '#wtf'; */
var postFile = 'ok.php';
$.post("ok.php", function(data){
cache: false
$("#wtf").html(data);
});
setTimeout('ajax_update()', 10000);
}
And here's index.php:
header("cache-control: no-cache");
?>
Thank you in forward..!