« Back
You are in :
Recent Topics »
Using jQuery Plugins »
jQuery form validation remote: function
Bump, please help!
Check out the documentation for jQuery Validate
You can do something like:
- $("#myform").validate({
- rules: {
- email: {
- required: true,
- email: true,
- remote: "check-email.php"
- }
- }
- });
check-email.php would check and see if the email is already been used and will return true.
Post Actions

