GB_001 Posted May 10, 2008 Share Posted May 10, 2008 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); } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.