Quote:
Originally Posted by Cybernetec
Next version is AJAX based, with several new features and bug fixes. It was completed few days ago but was not passed final test. It works perfect on all browsers, except IE. I hate Microsoft.
|
Well, I do know that with IE you need to use an ActiveX object instead of the XmlHttpRequest object.
Code:
var XMLHttp=null
if (window.XMLHttpRequest)
{
XMLHttp=new XMLHttpRequest()
}
else if (window.ActiveXObject)
{
XMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
}
Not sure if that's the problem you're running into, though.