How to wait for ajax validation to complete before submitting a form?

Posted by Jung on Stack Overflow See other posts from Stack Overflow or by Jung
Published on 2009-05-15T01:27:16Z Indexed on 2010/04/30 6:17 UTC
Read the original article Hit count: 168

Filed under:
|
|

Having a problem where the form submits before the validateUsername function has a chance to complete the username check on the server-side.

How do I submit the form only after the validateUsername function completes? Hope this is clear...

form.submit(function(){
	if (validateUsername() & validateEmail() & validatePassword()) {
		return true;
	} else {
		return false;
	}
});			

function validateUsername(){			
	usernameInfo.addClass("sign_up_drill");
	usernameInfo.text("checking...");
	var b = username.val();
	var filter = /^[a-zA-Z0-9_]+$/;		
	$.post("../username_check.php",{su_username:username.val()},function(data) {
		if (data=='yes') {
			username.addClass("error");
			usernameInfo.text("sorry, that one's taken");
			usernameInfo.addClass("error");
			return false;			
		} else if (!filter.test(b)) {
			username.addClass("error");
			usernameInfo.text("no funny characters please");
			usernameInfo.addClass("error");
			return false;	
		} else {
			username.removeClass("error");
			usernameInfo.text("ok");
			usernameInfo.removeClass("error");		
			return true;	
		}
	});				
}

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about AJAX