Hello,
I'm trying to use XMLHttpRequest( ) with this code below but with firefox doesn't work, the exception raise! with IE6 (using new ActiveXObject(' Microsoft.XMLHT TP');) all work. Why with firefox and Opera too it doesn't work?
I'm trying to use XMLHttpRequest( ) with this code below but with firefox doesn't work, the exception raise! with IE6 (using new ActiveXObject(' Microsoft.XMLHT TP');) all work. Why with firefox and Opera too it doesn't work?
Code:
var req="null";
try {
req = new XMLHttpRequest();
}
catch (e) {
alert("problem ");
}
Comment