Hi there,
I currently have a problem with validating a form. The form is created by AJAX:
getuser.php creates the form and echo's it back to the original page. On submitting of the form it uses javascript to check for errors or missing information. However the javascript is on the original page.Code:xmlhttp.onreadystatechange=function(){ if (xmlhttp.readyState==4 && xmlhttp.status==200){ document.getElementById("editUserContent").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","getuser.php?q="+str,true); xmlhttp.send(); }
At the moment I can not get the javascript to work at all, I am guessing this is due to form being echo from getuser.php. The javascript works fine when not using ajax.
Everything else in the form works fine.
If anyone has any ideas please get back to me, thanks.


Reply With Quote

Bookmarks