Javascript Form Validation Example
Javascript Form Validation Example
In this example, we are going to validate the name and password. The
name can’t be empty and password can’t be less than 6 characters long.
Here, we are validating the form on form submit. The user will not be
forwarded to the next page until given values are correct.
<html>
<body>
<script>
function validateform(){
var name=document.myform.name.value;
var password=document.myform.password.value;
if (name==null || name==""){
alert("Name can't be blank");
return false;
}else if(password.length<6){
alert("Password must be at least 6 characters long.");
return false;
}
}
</script>
<body>
<form name="myform" method="post" action="# " onsubmit="return
validateform()" >
Name: <input type="text" name="name"><br/>
Password: <input type="password" name="password"><br/>
<input type="submit" value="register">
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function matchpass(){
var firstpassword=document.f1.password.value;
var secondpassword=document.f1.password2.value;
if(firstpassword==secondpassword){
return true;
}
else{
alert("password must be same!");
return false;
}
}
</script>
</head>
<body>
<form name="f1" action="# " onsubmit="return matchpass()">
Password:<input type="password" name="password" /><br/>
Re-enter Password:<input type="password" name="password2"/><br/>
<input type="submit">
</form>
</body>
</html>
Let's validate the textfield for numeric value only. Here, we are using
isNaN() function.
<!DOCTYPE html>
<html>
<head>
<script>
function validate(){
var num=document.myform.num.value;
if (isNaN(num)){
document.getElementById("numloc").innerHTML="Enter Numeric
value only";
return false;
}else{
return true;
}
}
</script>
</head>
<body>
<form name="myform" action="#" onsubmit="return validate()" >
Number: <input type="text" name="num"><span
id="numloc"></span><br/>
<input type="submit" value="submit">
</form>
</body>
</html>
function validateEmail(elementValue){
var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]
{2,4}$/;
return emailPattern.test(elementValue);
}
Explanation:
The argument to this method is the email address you want to validate.
In the method body we define a variable (’emailPattern’) and assign a
regular expression to it.
Email format: The regular expression for email is
/^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/
To understand the regular expression, we will divide it into smaller
components:
\.: After the second group of characters there must be a period (‘.’). This
is to separate domain and subdomain names.
[a-zA-Z]{2,4}$/: Finally, the email address must end with two to four
alphabets. Having a-z and A-Z means that both lowercase and uppercase
letters are allowed.
{2,4} indicates the minimum and maximum number of characters. This
will allow domain names with 2, 3 and 4 characters e.g.; us, tx, org,
com, net, wxyz).
On the final line we call test method for our regular expression and pass
the email address as input. If the input email address satisfies our regular
expression, ‘test’ will return true otherwise it will return false. We return
this value to the calling method.
You can call this method whenever you want to validate email address.