Jump to content

'XMLHttpRequest' is undefined in IE6


dlebowski

Recommended Posts

I cannot figure out  why this will not work for me in IE6.  Can anyone help me with this?  Thank you in advance. 

 

function loadXmlHttp(url, id) {
var f = this;
f.xmlHttp = null;

if (window.XMLHttpRequest&&!f.ie||/^http/.test(window.location.href))
f.xmlHttp = new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari, others, IE 7+ when live - this is the standard method
else if (/(object)|(function)/.test(typeof createRequest))
f.xmlHttp = createRequest(); // ICEBrowser, perhaps others
else {
f.xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if(f.xmlHttp != null){
f.el = document.getElementById(id);
f.xmlHttp.open("GET",url,true);
f.xmlHttp.onreadystatechange = function(){f.stateChanged();};
f.xmlHttp.send(null);
}
}

Link to comment
https://forums.phpfreaks.com/topic/178964-xmlhttprequest-is-undefined-in-ie6/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.