Javascript form validation example download

JavaScript: Tips of the Day

Set object

const set = new Set[[1, 1, 2, 3, 4]];

console.log[set];

The Set object is a collection of unique values: a value can only occur once in a set.
We passed the iterable [1, 1, 2, 3, 4] with a duplicate value 1. Since we cannot have two of the same values in a set, one of them is removed. This results in {1, 2, 3, 4}.

Ref: //bit.ly/323Y0P6

Last update on August 19 2022 21:50:37 [UTC/GMT +8 hours]

Form Validation

In this document, we have discussed JavaScript Form Validation using a sample registration form. The tutorial explores JavaScript validation on submit with detail explanation.

Following pictorial shows in which field, what validation we want to impose.

How would we set those validations

We will create JavaScript functions [one for each input field whose value is to validate] which check whether a value submitted by user passes the validation.

All those functions are called from another function.

It sets the focus to the input field until the user supplies a valid value.

When the user does so, they may proceed and can supply value to the next available field.

The later JavaScript function created is called on the onsubmit event of the form.

HTML Code of the Sample Registration Form




JavaScript Form Validation using a sample registration form






Registration Form

Use tab keys to move from one input field to the next.

  • User id:
  • Password:
  • Name:
  • Address:
  • Country:
  • [Please select a country] Australia Canada India Russia USA
  • ZIP Code:
  • Email:
  • Sex:
  • Male
  • Female
  • Language:
  • English
  • Non English
  • About:

sample-registration-form-validation.js is the external JavaScript file which contains the JavaScript ocde used to validate the form. js-form-validation.css is the stylesheet containing styles for the form. Notice that for validation, the JavaScript function containing the code to validate is called on the onSubmit event of the form.

For the sake of demonstration, we have taken five countries only. You may add any number of countries in the list.

CSS Code of the Sample Registration Form


h2 {
margin-left: 70px;
}
form li {
list-style: none;
margin-bottom: 5px;
}

form ul li label{
float: left;
clear: left;
width: 100px;
text-align: right;
margin-right: 10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:14px;
}

form ul li input, select, span {
float: left;
margin-bottom: 10px;
}

form textarea {
float: left;
width: 350px;
height: 150px;
}

[type="submit"] {
clear: left;
margin: 20px 0 0 230px;
font-size:18px
}

p {
margin-left: 70px;
font-weight: bold;
}

JavaScript code for validation

JavaScript function which is called on onSubmit

This function calls all other functions used for validation.

function formValidation[]
{
var uid = document.registration.userid;
var passid = document.registration.passid;
var uname = document.registration.username;
var uadd = document.registration.address;
var ucountry = document.registration.country;
var uzip = document.registration.zip;
var uemail = document.registration.email;
var umsex = document.registration.msex;
var ufsex = document.registration.fsex; if[userid_validation[uid,5,12]]
{
if[passid_validation[passid,7,12]]
{
if[allLetter[uname]]
{
if[alphanumeric[uadd]]
{ 
if[countryselect[ucountry]]
{
if[allnumeric[uzip]]
{
if[ValidateEmail[uemail]]
{
if[validsex[umsex,ufsex]]
{
}
} 
}
} 
}
}
}
}
return false;
}

JavaScript function for validating userid

function userid_validation[uid,mx,my]
{
var uid_len = uid.value.length;
if [uid_len == 0 || uid_len >= my || uid_len < mx]
{
alert["User Id should not be empty / length be between "+mx+" to "+my];
uid.focus[];
return false;
}
return true;
}

The code above checks whether userid input field is provided with a string of length 5 to 12 characters. If not, it displays an alert.

Flowchart:

avaScript function for validating password

function passid_validation[passid,mx,my]
{
var passid_len = passid.value.length;
if [passid_len == 0 ||passid_len >= my || passid_len < mx]
{
alert["Password should not be empty / length be between "+mx+" to "+my];
passid.focus[];
return false;
}
return true;
}

The above code used to validate password [it should be of length 7 to 12 characters]. If not, it displays an alert.

Flowchart:

JavaScript code for validating user name

function allLetter[uname]
{ 
var letters = /^[A-Za-z]+$/;
if[uname.value.match[letters]]
{
return true;
}
else
{
alert['Username must have alphabet characters only'];
uname.focus[];
return false;
}
}

The code above checks whether user name input field is provided with alphabates characters. If not, it displays an alert.

Flowchart:

JavaScript code for validating user address

function alphanumeric[uadd]
{ 
var letters = /^[0-9a-zA-Z]+$/;
if[uadd.value.match[letters]]
{
return true;
}
else
{
alert['User address must have alphanumeric characters only'];
uadd.focus[];
return false;
}
}

The code above checks whether user address input field is provided with alphanumeric characters. If not, it displays an alert.

Flowchart:

JavaScript code for validating country

function countryselect[ucountry]
{
if[ucountry.value == "Default"]
{
alert['Select your country from the list'];
ucountry.focus[];
return false;
}
else
{
return true;
}
}

The code above checks whether a country is selected from the given list. If not, then it displays an alert.

Flowchart:

JavaScript code for validating ZIP code

function allnumeric[uzip]
{ 
var numbers = /^[0-9]+$/;
if[uzip.value.match[numbers]]
{
return true;
}
else
{
alert['ZIP code must have numeric characters only'];
uzip.focus[];
return false;
}
}

The code above checks whether a ZIP code of numeric value. If not, it displays an alert.

Flowchart:

JavaScript code for validating email format

function ValidateEmail[uemail]
{
var mailformat = /^\w+[[\.-]?\w+]*@\w+[[\.-]?\w+]*[\.\w{2,3}]+$/;
if[uemail.value.match[mailformat]]
{
return true;
}
else
{
alert["You have entered an invalid email address!"];
uemail.focus[];
return false;
}
}

The code above checks whether a valid email format is supplied. If not,it displays an alert.

Flowchart:

JavaScript code for validating gender

function validsex[umsex,ufsex]
{
x=0;

if[umsex.checked] 
{
x++;
} if[ufsex.checked]
{
x++; 
}
if[x==0]
{
alert['Select Male/Female'];
umsex.focus[];
return false;
}
else
{
alert['Form Successfully Submitted'];
window.location.reload[]
return true;}
}

The code above checks whether a sex is selected. If not, it displays an alert. If Male or Female is selected, it generates an alert saying that the form is successfully submitted and it reloads the form.

Flowchart:

Here is the entire JavaScript used for validation of the form.

function formValidation[]
{
var uid = document.registration.userid;
var passid = document.registration.passid;
var uname = document.registration.username;
var uadd = document.registration.address;
var ucountry = document.registration.country;
var uzip = document.registration.zip;
var uemail = document.registration.email;
var umsex = document.registration.msex;
var ufsex = document.registration.fsex; if[userid_validation[uid,5,12]]
{
if[passid_validation[passid,7,12]]
{
if[allLetter[uname]]
{
if[alphanumeric[uadd]]
{ 
if[countryselect[ucountry]]
{
if[allnumeric[uzip]]
{
if[ValidateEmail[uemail]]
{
if[validsex[umsex,ufsex]]
{
}
} 
}
} 
}
}
}
}
return false;

} function userid_validation[uid,mx,my]
{
var uid_len = uid.value.length;
if [uid_len == 0 || uid_len >= my || uid_len < mx]
{
alert["User Id should not be empty / length be between "+mx+" to "+my];
uid.focus[];
return false;
}
return true;
}
function passid_validation[passid,mx,my]
{
var passid_len = passid.value.length;
if [passid_len == 0 ||passid_len >= my || passid_len < mx]
{
alert["Password should not be empty / length be between "+mx+" to "+my];
passid.focus[];
return false;
}
return true;
}
function allLetter[uname]
{ 
var letters = /^[A-Za-z]+$/;
if[uname.value.match[letters]]
{
return true;
}
else
{
alert['Username must have alphabet characters only'];
uname.focus[];
return false;
}
}
function alphanumeric[uadd]
{ 
var letters = /^[0-9a-zA-Z]+$/;
if[uadd.value.match[letters]]
{
return true;
}
else
{
alert['User address must have alphanumeric characters only'];
uadd.focus[];
return false;
}
}
function countryselect[ucountry]
{
if[ucountry.value == "Default"]
{
alert['Select your country from the list'];
ucountry.focus[];
return false;
}
else
{
return true;
}
}
function allnumeric[uzip]
{ 
var numbers = /^[0-9]+$/;
if[uzip.value.match[numbers]]
{
return true;
}
else
{
alert['ZIP code must have numeric characters only'];
uzip.focus[];
return false;
}
}
function ValidateEmail[uemail]
{
var mailformat = /^\w+[[\.-]?\w+]*@\w+[[\.-]?\w+]*[\.\w{2,3}]+$/;
if[uemail.value.match[mailformat]]
{
return true;
}
else
{
alert["You have entered an invalid email address!"];
uemail.focus[];
return false;
}
} function validsex[umsex,ufsex]
{
x=0;

if[umsex.checked] 
{
x++;
} if[ufsex.checked]
{
x++; 
}
if[x==0]
{
alert['Select Male/Female'];
umsex.focus[];
return false;
}
else
{
alert['Form Succesfully Submitted'];
window.location.reload[]
return true;
}
}

Flowchart:


file_download Download the validation code from here.

You can view this Sample JavaScript Registration From Validation Example in a separate browser window and check how the validation is working.

We would like to hear from you regarding this document. And we welcome any constructive suggestions to improve this example.

Now, when you have finished learning how to validate a sample registration form using JavaScript, let us take you to the another way doing the same thing. But this time, the instead of on submitting the form, validations are on field level, i.e. whenever you move from one field to another. Sure that will be preety interesting to learn and share as well.

Other JavaScript Validation:

  • Checking for non-empty
  • Checking for all letters
  • Checking for all numbers
  • Checking for floating numbers
  • Checking for letters and numbers
  • Checking string length
  • Email Validation
  • Date Validation
  • A sample Registration Form
  • Phone No. Validation
  • Credit Card No. Validation
  • Password Validation
  • IP address Validation

Previous: JavaScript: HTML Form - Date validation
Next: JavaScript Field Level Form Validation using a registration form

Chủ Đề