/ Published in: JavaScript
URL: http://beta.plazes.com/register/
Found on the jquery mailing list: http://jquery.com/discuss/2006-April/004625/ The url shows it in action, checking text when you move away from a field.
Expand |
Embed | Plain Text
$("#my-form input[@type='text']").blur(function() { var query = {}; query[this.name] = this.value; $.post("/path/to/your/validation.php", query, function(response) { // do something like changing a css class, disable submit... )}; });
You need to login to post a comment.
