Skip to content

Instantly share code, notes, and snippets.

@etsai
Forked from ksolo/form-validator.js
Last active December 22, 2015 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etsai/6453316 to your computer and use it in GitHub Desktop.
Save etsai/6453316 to your computer and use it in GitHub Desktop.
Form Validation
$(function(){
$("form").submit(function(event) {
event.preventDefault();
$("ul").empty();
var email = $("input:first").val()
var password = $("input:last").val()
var valid_email = /\w+@\w+.\w/
var char_length = /.{8,}/
var digit = /\d+/
var capital = /[A-Z]/
var check_email = check_email();
var check_password = check_password();
if (check_email == true && check_password == true){
$.ajax({
type: this.method,
url: this.action,
data: $(this).serialize
});
}
function check_email() {
if (valid_email.test(email) == false){
$("#errors").append("<li> Must be a valid email address </li>")
}
if (valid_email.test(email) == true){
return true
}
};
function check_password() {
if (char_length.test(password) == false){
$("#errors").append("<li> Password must have at least one numeric character (0-9) </li>")
}
if (capital.test(password) == false){
$("#errors").append("<li> Password must have at least one capital letter. </li>")
}
if (digit.test(password) == false){
$("#errors").append("<li> Password must have at least 8 characters. </li>")
}
if (char_length.test(password) == true && capital.test(password) == true && digit.test(password) == true){
return true
}
};
});
});
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="main.css">
<title>Form Validation</title>
</head>
<body>
<form name="sign_up" action="#" method="post">
<label for="email">Email</label>
<input type="text" name="email" />
<label for="password">Password</label>
<input type="password" name="password" />
<button type="submit">Sign Up</button>
<ul id="errors"></ul>
</form><body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="form-validator.js"></script>
</body>
</html>
ul#errors {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment