Jump to content

Script working in FF, but not IE.


GB_001

Recommended Posts

Hello,

I keep getting an undefined error in IE.

that point to this line in the script:

 

ajaxDisplay.innerHTML = ajaxRequest.responseText;

 

Please help, thankyou.

-GB.

 

<!--
//
function Login(){
var ajaxRequest; // The variable that makes Ajax possible!

try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
} catch (e){
// Internet Explorer Browsers
try{
ajaxRequest = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try{
ajaxRequest = new ActiveXObject('Microsoft.XMLHTTP');
} catch (e){
// Something went wrong
alert('Your browser broke!');
return false;
}
}
}
// Create a function that will receive data sent from the server
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){

var ajaxDisplay = document.getElementById('mainiac');
ajaxDisplay.innerHTML = ajaxRequest.responseText;
}

}

var url = 'Authenticate.php';
var email=document.login.email.value;
var password=document.login.password.value;
var u = '?email='+email+'&password='+password;
ajaxRequest.open('GET', url+u, true);
ajaxRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
ajaxRequest.send(null);
}

Link to comment
https://forums.phpfreaks.com/topic/105069-script-working-in-ff-but-not-ie/
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.