Forum Moderators: open
On my test machines (IE7) it works perfectly every time.
On my clients Safari (MAC) it works perfectly.
On her IE7 and IE6 on various machines, it is not working correctly - she has cleared cache, forced refresh, and still the browser hangs on to the old.
What would cause IE to hang on to the old data and not run the Ajax?
she has also adjusted the Cache to pull a new page every time.
I'm stumped and so is she.
Thanks.
var xmlHttp;
try {
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e) {
// Internet Explorer
try {
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {
try {
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
alert("Your browser does not support AJAX!");
return false;
}
}
}