|
-
July 14th, 2010, 01:10 AM
#1
AJAX and javascript form validation
Hi there,
I currently have a problem with validating a form. The form is created by AJAX:
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();
}
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.
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.
Last edited by PeejAvery; July 19th, 2010 at 01:43 PM.
Reason: Added code tags.
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|