Hai guys, I got the error 'XMLHTTPRequest is Undefined' in IE6 when i load data via ajax to another drop down in php....
+1
A:
IE6 has no native support for XMLHTTPRequest however XMLHTTP is implemented as an ActiveX object provided by MSXML.
egonyx
2009-11-12 14:12:24
+1
A:
Most probably that's because in IE6 you'll have to create XMLHTTPRequest with ActiveXObject,
Like so:
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
EFraim
2009-11-12 14:12:51
Thanks man that did the trick... our forum rocks....
Pandiya Chendur
2009-11-12 14:25:35