Join over 55,891 Subscribers Today! FREE UPDATES!
Get The Only Freelancer crash course you will ever need to read!
Client-side validation is something every web form should have, no doubts about that. While server-side validation does its job, it certainly lacks good user experience. What is so great about client-side validation then?
Not only is it useful to the user because it makes the process of filling out the form a lot quicker and a lot less painful, but it also shows that you actually care about them. For the user there’s nothing better than knowing right away if they’re doing it correctly.
In this tutorial we’re going to learn how to build real-time form validation using jQuery. If you’d like to see what you’ll be building, you can watch the short video intro or hit the “Live Demo” button and check it out.
Now, there are actually many ways to do that; here are the most common:
</span> (which will be holding validation info) next to our form field and give it an ID so we can easily access its content later</p> with applied ID, and put </span> (which will be holding validation info) inside it, so we can easily access its content, through that </p>‘s child-span</p> with applied ID, and inject </span> with validation info to itIt will all work, but neither is the optimal way. Why? Because there’s too much messing with your HTML code and you’ll end up with bunch of needless tags that are required by your validation script, but which your form doesn’t really need.
It’s clearly not the way to go, so instead we’re going to do this the way I do it myself. In my opinion it’s the best solution, although it’s not very common; I honestly have never came across this method, I’ve never seen it used by someone. But if you have, please let me know in the comments.
OK, so what are we going to do?
</div> with applied ID, inject it to the document, position it absolutely on the spot where the field ends, and manipulate its class as needed (for example .correct or .incorrect)That way we keep our HTML code nice and clean.
Note: It’s vital to always provide server-side validation as well (for users with turned off JavaScript).
We are going to need three files:
I’m gonna go roughly through the HTML coding, provide you with all needed CSS – and then focus mostly on our jQuery script, which is the most important thing and what we’re hoping to learn today.
First, make index.html file and put some basic code there; you can see that we imported jQuery at the bottom, along with our validation.js file, which will contain our validation script:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Real-Time Form Validation Using jQuery</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <body> <div id="content"> </div><!-- content --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" charset="utf-8"></script> <script type="text/javascript" src="validate.js" charset="utf-8"></script> </body> </html>
We’re going to split the form into three sections using </fieldset>, and </label> for each section headline:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Real-Time Form Validation Using jQuery</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <body> <div id="content"> <form id="jform" action="http://1stwebdesigner.com" method="post"> <fieldset> <legend>Personal Info</legend> </fieldset> <fieldset> <legend>Email</legend> </fieldset> <fieldset> <legend>About You</legend> </fieldset> </form> </div><!-- content --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" charset="utf-8"></script> <script type="text/javascript" src="validate.js" charset="utf-8"></script> </body> </html>
Great, now it’s time to finally add some fields to our form. For this tutorial we’re going to use several different fields:
inputs: for user’s full name, date of birth and email adressradio buttons for user’s gendercheckboxes for vehicles owned by the usertextarea for little info about the userbutton for submit buttonWe’re going to wrap every set (label + field) in </p> to keep them separated and display them as blocks.
Your final index.html file should look like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Real-Time Form Validation Using jQuery</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> </head> <body> <div id="content"> <form id="jform" action="http://1stwebdesigner.com" method="post"> <fieldset> <legend>Personal Info</legend> <p> <label for="fullname" class="block">Full name:</label> <input type="text" name="fullname" id="fullname" /> </p> <p> <label for="birthday" class="block">Day of birth <small>(dd-mm-yyyy)</small>:</label> <input type="text" name="birthday" id="birthday" /> </p> <p> <label class="block">I am:</label> <input type="radio" name="gender" id="man" value="man" /> <label for="man">Man</label> <input type="radio" name="gender" id="woman" value="woman" /> <label for="woman">Woman</label> </p> <p> <label class="block">I own:</label> <input type="checkbox" name="vehicle" id="car" /> <label for="car">car</label> <input type="checkbox" name="vehicle" id="airplane" /> <label for="airplane">airplane</label> <input type="checkbox" name="vehicle" id="bicycle" /> <label for="bicycle">bicycle</label> <input type="checkbox" name="vehicle" id="ship" /> <label for="ship">ship</label> </p> </fieldset> <fieldset> <legend>Email</legend> <p> <label for="email" class="block">Email <small>(mickey@mou.se)</small>:</label> <input type="text" name="email" id="email" /> </p> </fieldset> <fieldset> <legend>About You</legend> <p> <label for="about" class="block">Tell us a little bit about yourself:</label> <textarea id="about" cols="50" rows="10"></textarea> </p> </fieldset> <p> <button type="submit" id="send">submit</button> </p> </form> </div><!-- content --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" charset="utf-8"></script> <script type="text/javascript" src="validate.js" charset="utf-8"></script> </body> </html>
It may look a bit messy, but it’s because of the WP’s syntax highlighting plugin. It’s actually really clean, and that’s what we wanted to achieve afterall. Check it: save the above code as your index.html file, open it in your browser and look at the source code. Now it looks clean, isn’t it?
Since CSS styling is not our main focus in this tutorial, I’m not gonna go over this, but simply provide you with the CSS you’re going to need for this to work.
Create style.css file, put inside all the code from below and that’s it! Now everything should look sweet.
body {
background: #efefef;
margin: 0;
padding: 0;
border: none;
text-align: center;
font: normal 13px Georgia, "Times New Roman", Times, serif;
color: #222;
}
#content {
width: 500px;
margin: 0 auto;
margin-bottom: 25px;
padding: 0;
text-align: left;
}
fieldset {
margin-top: 25px;
padding: 15px;
border: 1px solid #d1d1d1;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
}
fieldset legend {
font: normal 30px Verdana, Arial, Helvetica, sans-serif;
text-shadow: 0 1px 1px #fff;
letter-spacing: -1px;
color: #273953;
}
input, textarea {
padding: 3px;
}
label {
cursor: pointer;
}
.block {
display: block;
}
small {
letter-spacing: 1px;
font-size: 11px;
font-style: italic;
color: #9e9e9e;
}
.info {
text-align: left;
padding: 5px;
font-size: 11px;
color: #fff;
position: absolute;
display: none;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: -1px 1px 2px #a9a9a9;
-moz-box-shadow: -1px 1px 2px #a9a9a9;
box-shadow: -1px 1px 2px #a9a9a9;
}
.error {
background: #f60000;
border: 3px solid #d50000;
}
.correct {
background: #56d800;
border: 3px solid #008000;
}
.wrong {
font-weight: bold;
color: #e90000;
}
.normal {
font-weight: normal;
color: #222;
}
#send {
background: #3f5a81;
width: 100%;
border: 5px solid #0F1620;
font: bold 30px Verdana, sans-serif;
color: #fafafa;
text-shadow: 1px 1px 1px #0F1620;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
}
#send:hover {
background: #4d76b1;
border: 5px solid #253750;
color: #fff;
}
#send:active {
text-indent: -10px;
}
This is the most interesting and engaging part. First we need to do some thinking and describe our key points.
We have to ask ourselves three questions before we can go on:
It’s obvious we want the script to validate our form. But how?
To reduce our global footpring, we’re going to use JavaScript object for that.
JS object, in our case it will be:
jValMethods of that object for each of the form fields, validating that particular field:
jVal.fullNamejVal.birthDatejVal.genderjVal.vehiclejVal.emailjVal.aboutVariable which will hold the status of error occuring:
jVal.errorsAnd method that will be called as the last one; it will check if there were any errors and submit the form if not. If some errors occurred, it will take the user to the beginning of the form, so they can fill it out again.
jVal.sendItNow we can finally start building our validation script. When finish our first validation method, then it will be much easier and faster, as we can reuse it for other methods, only applying some changes. Let’s crack into it!
The start is really simple, almost everything will go inside this code:
$(document).ready(function(){
jVal = {
};
});
Our first method will handle user’s name. Put it inside our jVal object, like this:
var jVal = {
'fullName' : function() {
}
};
Now let’s put some first lines of code inside our method. Just paste it, and then I will explain what the code “says”:
$('body').append('<div id="nameInfo" class="info"></div>');
var nameInfo = $('#nameInfo');
var ele = $('#fullname');
var pos = ele.offset();
</div> to the document. Class “info” gives it some styling (defined in our CSS file) and also make it invisible by setting display to “none” – so it’s there, but we don’t see it yet. As for the ID, it’s for easy “grabbing” and manipulating, since it will be positioned absolutely in the document. This </div> will contain our validation info that will be showed to the user, so they know if they filled out the field correctly.</div> to the variable nameInfo, because we’ll be using it couple times more.ID “fullname” to the variable ele. The same reason as above, we will use it several times later.offset() returns current position of an element relative to the document. It returns an object containing the properties top and left. We used this function on our ele (which is actually form input with ID “fullname”), so it will return position of that element, which we assign to the variable pos.Great, so far so good. It’s time to add some few more lines:
nameInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
nameInfo‘s CSS top property. Remember, our variable pos holds now the position of our form input with ID “fullname” in the document. We access its top value by simply joining pos with the word top using period . . Then we decrement that by 3 and assign it to the CSS top property of our nameInfo element.nameInfo‘s CSS left property. We access left value of our “Full name” input’s position, increase it by its width (we grab that from calling jQuery function width() on our ele element) and increase it by 15. The result is assigned to the CSS left property of our nameInfo element.We’re doing really great, we just acomplished 50% of fullName, our first validating method. It’s time to actually check if the user filled our “Full name” field correctly or not, and take appropriate action:
if(ele.val().length < 6) {
jVal.errors = true;
nameInfo.removeClass('correct').addClass('error').html('← at least 6 characters').show();
ele.removeClass('normal').addClass('wrong');
} else {
nameInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
Lot of weird crap, huh? Don’t worry, it’s not so scary as it may look:
6 characters.jVal.errors to true, as we just got our first error (user’s name is too short). We’re going to use it later.nameInfo element (which is the </div> we’re gonna display validation info in). First we remove the class “correct”; it may be applied to our nameInfo element from previous validation (if it was performed). Then we apply the class “error” to it. Next, we put content to our nameInfo element, it’s the information that the name should be at least 6 characters long. And finally we our alert-box visible to the user.ele element (which is our form “Full name” input). First we remove class “normal”, which may be there from previous validation, then we apply class “wrong” to it.nameInfo element. We remove class “error” if it’s there, and apply class “correct”. We put √ inside to let the user know it’s all good. We show the alert-box (if it wasn’t visible before).ele element. We remove class “wrong” if it’s there, and apply class “normal”.Well done! This is our first validation method. Now it’s time to test it, but before we can do that, we need to write few more lines of code.
We need to make sure, that our fullName method will be called when the user finished filling out the “Full name” field. To achieve that, we need to bind our method to certain user action. There are two great jQuery functions that would serve that purpose well: blur() and change(). We are going to use change().
Paste this code below the whole jVal object:
$('#fullname').change(jVal.fullName);
What it does in human words: if the user changes value of the “Full name” field and then leaves (e.g. to fill out another field), our fullName method is fired up, to validate “Full name” field.
Right now you should have one fully working validation method, so test it. Your whole validate.js file should like like this:
$(document).ready(function(){
var jVal = {
'fullName' : function() {
$('body').append('<div id="nameInfo" class="info"></div>');
var nameInfo = $('#nameInfo');
var ele = $('#fullname');
var pos = ele.offset();
nameInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
if(ele.val().length < 6) {
jVal.errors = true;
nameInfo.removeClass('correct').addClass('error').html('← at least 6 characters').show();
ele.removeClass('normal').addClass('wrong');
} else {
nameInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
}
};
// bind jVal.fullName function to "Full name" form field
$('#fullname').change(jVal.fullName);
});
Starting from now, it will all get easier. Our validation methods are in 90% the same, so all you have to do is copy our fullName method, and only apply some changes
Great, so now just copy whole fullName method, paste it below and rename it to birthDate. The changes we need to make are:
nameInfo occurences have to become birthInfo#fullname, assign #birthday element to variable elebirthInfo.css() declaration:
var patt = /^[0-9]{2}\-[0-9]{2}\-[0-9]{4}$/i;
if()statement has to become:
if(!patt.test(ele.val()))
← type in date in correct formatThis is how birthDate method should look like after these changes:
'birthDate' : function (){
$('body').append('<div id="birthInfo" class="info"></div>');
var birthInfo = $('#birthInfo');
var ele = $('#birthday');
var pos = ele.offset();
birthInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
var patt = /^[0-9]{2}\-[0-9]{2}\-[0-9]{4}$/i;
if(!patt.test(ele.val())) {
jVal.errors = true;
birthInfo.removeClass('correct').addClass('error').html('← type in date in correct format').show();
ele.removeClass('normal').addClass('wrong');
} else {
birthInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
}
two digits followed by hyphen then again two digits followed by hyphen and finally four digits at the end. So, the pattern applies for example to this date: 28-03-1987.And of course, we need to bind this birthDate method to the “Date of birth” form field. It’s the same thing we did with fullName before, only with different names. Paste it at the bottom (outside of the jVal object), below our fullName binding declaration:
$('#birthday').change(jVal.birthDate);
And we have another fully working validation method. Great job!
Again, simply copy the whole fullName method, rename it to gender and apply these changes:
nameInfo occurences have to become genderInfo#fullname, assign #woman element to variable elegenderInfo.css() declaration, the top value has to become top: pos.top-10 and the left value has to become left: pos.left+ele.width()+60if()statement has to become:
if($('input[name="gender"]:checked').length === 0)
← are you a man or a woman?This is how gender method should look like after these changes:
'gender' : function (){
$('body').append('<div id="genderInfo" class="info"></div>');
var genderInfo = $('#genderInfo');
var ele = $('#woman');
var pos = ele.offset();
genderInfo.css({
top: pos.top-10,
left: pos.left+ele.width()+60
});
if($('input[name="gender"]:checked').length === 0) {
jVal.errors = true;
genderInfo.removeClass('correct').addClass('error').html('← are you a man or a woman?').show();
ele.removeClass('normal').addClass('wrong');
} else {
genderInfo..removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
}
$('input[name="gender"]:checked') selects all inputs with name “gender” (in this case all radio buttons) that are checked. Than we check if the number of selected radios (.length) equals 0, which would mean that user didn’t select any.As always, we have to bind this gender method to our “Gender” radio buttons:
$('input[name="gender"]').change(jVal.gender);
There, another validation method completed. Three more to go :).
This time copy gender method, rename it to vehicle and apply following changes:
genderInfo occurences have to become vehicleInfo#woman, assign #ship element to variable elevehicleInfo.css() declaration, the left value has to become left: pos.left+ele.width()+40if()statement has to become:
if($('input[name="vehicle"]:checked').length <= 1)
← I am sure you have at least two!This is how vehicle method should look like after these changes:
'vehicle' : function (){
$('body').append('<div id="vehicleInfo" class="info"></div>');
var vehicleInfo = $('#vehicleInfo');
var ele = $('#ship');
var pos = ele.offset();
vehicleInfo.css({
top: pos.top-10,
left: pos.left+ele.width()+40
});
if($('input[name="vehicle"]:checked').length <= 1) {
jVal.errors = true;
vehicleInfo.removeClass('correct').addClass('error').html('← I am sure you have at least two!').show();
ele.removeClass('normal').addClass('wrong');
} else {
vehicleInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
}
$('input[name="vehicle"]:checked') selects all inputs with name ìvehicleî (in this case all checkbox buttons) that are checked. Than we check if the number of selected checkboxes (.length method) equals or is less than 1, which would mean that user didnít select any checkboxes or selected only one.Again, we have to bind this vehicle method to our “Vehicle” checkboxes:
$('input[name="vehicle"]').change(jVal.vehicle);
Tired? We have couple more methods to cover :). Time for email validation.
This time, copy our birthDate method, rename it to email and apply these changes:
birthInfo occurences have to become emailInfo#birthday, assign #email element to variable ele
var patt = /^.+@.+[.].{2,}$/i;
← give me a valid email adress, ok?This is how email method should look like after these changes:
'email' : function() {
$('body').append('<div id="emailInfo" class="info"></div>');
var emailInfo = $('#emailInfo');
var ele = $('#email');
var pos = ele.offset();
emailInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
var patt = /^.+@.+[.].{2,}$/i;
if(!patt.test(ele.val())) {
jVal.errors = true;
emailInfo.removeClass('correct').addClass('error').html('← give me a valid email adress, ok?').show();
ele.removeClass('normal').addClass('wrong');
} else {
emailInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
}
one or more characters followed by @ smbol, then again one or more characters followed by . period, and at the end there should be two or more characters. So, the pattern applies to this email adress example: mickey@mou.seOf course, bind this .email method to our “Email” form field:
$('#email').change(jVal.email);
Time for the last of our validation methods: about.
For this last method, copy fullName, rename it to about and apply following changes:
nameInfo occurences have to become aboutInfo#fullname, assign #about element to variable eleif()statement has to become:
if(ele.val().length < 75)
← come on, tell me a little bit more!This is how our about method should look like after these changes:
'about' : function() {
$('body').append('<div id="aboutInfo" class="info"></div>');
var aboutInfo = $('#aboutInfo');
var ele = $('#about');
var pos = ele.offset();
aboutInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
if(ele.val().length < 75) {
jVal.errors = true;
aboutInfo.removeClass('correct').addClass('error').html('← come on, tell me a little bit more!').show();
ele.removeClass('normal').addClass('wrong').css({'font-weight': 'normal'});
} else {
aboutInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
}
And of course we need to bind it to our “About” form field:
$('#about').change(jVal.about);
This is it! We just completed all our validation methods. It’s almost like they say: the end is nigh! There’s only two things left to do:
sendIt methodsendIt MethodThis method will be called after all our validation methods, as the last one, after clicking on the “submit” button. It will check if no errors occurred during validation (while performing any of our validation methods) up until the moment it’s called. The good news is, it couldn’t be more simple:
'sendIt' : function (){
if(!jVal.errors) {
$('#jform').submit();
}
errors variable I told you we’re going to use later? Well, this “later” is right now :). If even one little error occurred during the validation, this errors variable was set to true. In human words it actually means something like: “yes, it’s true that we got some errors during validation”. So here we’re checking if it’s actually NOT true, which equals to no errors from validation.The only thing left now, is to manage what happens when the user clicks on our “submit” button. And it goes like this:
$('#send').click(function (){
var obj = $.browser.webkit ? $('body') : $('html');
obj.animate({ scrollTop: $('#jform').offset().top }, 750, function (){
jVal.errors = false;
jVal.fullName();
jVal.birthDate();
jVal.gender();
jVal.vehicle();
jVal.email();
jVal.about();
jVal.sendIt();
});
return false;
});
send element, which is the “submit” button in our form, and if someone clicks on it we perform all code below.body. Internet Explorer and Firefox will work with html. Opera will work with both. Unfortunately in our case we can’t just use $('html, body') to target both these elements (I’ll talk about that another time). So we need to somehow decide which of these elements we should apply scrolling to. And this is where jQuery comes with help. It provides us with $.browser property – it allows us to detect which browser we are working in. By using $.browser.webkit we’re just checking if our browser is running on webkit engine; if so then we assign body element to the obj variable we just created, if not we assign html element to it. Important note: It should be avoided and it’s considered bad practice to perform any kind of “browser detection”, you should use “feature detection” instead. But we can get away with that for our learning purposes.scrollTop animation to our obj element. The point that scrolling should stop is the beginning of the form, which is determined by accessing top value of its position in the document, which we get thanks to jQueryoffset() function. Next we say that this scrolling animation should last 750 milliseconds, and when it’s done we…jVal.errors to false, to clear errors that might occurred in previous validation, and then we…sendIt method at the end, which will check if there were no errors and submit the whole form if so.false to that click event of the “submit” button in our form, which means that the form won’t be submitted right away, the script will perform actions planned by us first.Right now our validation script is fully completed and should look like this:
$(document).ready(function(){
var jVal = {
'fullName' : function() {
$('body').append('<div id="nameInfo" class="info"></div>');
var nameInfo = $('#nameInfo');
var ele = $('#fullname');
var pos = ele.offset();
nameInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
if(ele.val().length < 6) {
jVal.errors = true;
nameInfo.removeClass('correct').addClass('error').html('← at least 6 characters').show();
ele.removeClass('normal').addClass('wrong');
} else {
nameInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
},
'birthDate' : function (){
$('body').append('<div id="birthInfo" class="info"></div>');
var birthInfo = $('#birthInfo');
var ele = $('#birthday');
var pos = ele.offset();
birthInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
var patt = /^[0-9]{2}\-[0-9]{2}\-[0-9]{4}$/i;
if(!patt.test(ele.val())) {
jVal.errors = true;
birthInfo.removeClass('correct').addClass('error').html('← type in date in correct format').show();
ele.removeClass('normal').addClass('wrong');
} else {
birthInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
},
'gender' : function (){
$('body').append('<div id="genderInfo" class="info"></div>');
var genderInfo = $('#genderInfo');
var ele = $('#woman');
var pos = ele.offset();
genderInfo.css({
top: pos.top-10,
left: pos.left+ele.width()+60
});
if($('input[name="gender"]:checked').length === 0) {
jVal.errors = true;
genderInfo.removeClass('correct').addClass('error').html('← are you a man or a woman?').show();
ele.removeClass('normal').addClass('wrong');
} else {
genderInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
},
'vehicle' : function (){
$('body').append('<div id="vehicleInfo" class="info"></div>');
var vehicleInfo = $('#vehicleInfo');
var ele = $('#ship');
var pos = ele.offset();
vehicleInfo.css({
top: pos.top-10,
left: pos.left+ele.width()+40
});
if($('input[name="vehicle"]:checked').length <= 1) {
jVal.errors = true;
vehicleInfo.removeClass('correct').addClass('error').html('← I\'m sure you have at least two!').show();
ele.removeClass('normal').addClass('wrong');
} else {
vehicleInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
},
'email' : function() {
$('body').append('<div id="emailInfo" class="info"></div>');
var emailInfo = $('#emailInfo');
var ele = $('#email');
var pos = ele.offset();
emailInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
var patt = /^.+@.+[.].{2,}$/i;
if(!patt.test(ele.val())) {
jVal.errors = true;
emailInfo.removeClass('correct').addClass('error').html('← give me a valid email adress, ok?').show();
ele.removeClass('normal').addClass('wrong');
} else {
emailInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
},
'about' : function() {
$('body').append('<div id="aboutInfo" class="info"></div>');
var aboutInfo = $('#aboutInfo');
var ele = $('#about');
var pos = ele.offset();
aboutInfo.css({
top: pos.top-3,
left: pos.left+ele.width()+15
});
if(ele.val().length < 75) {
jVal.errors = true;
aboutInfo.removeClass('correct').addClass('error').html('← come on, tell me a little bit more!').show();
ele.removeClass('normal').addClass('wrong').css({'font-weight': 'normal'});
} else {
aboutInfo.removeClass('error').addClass('correct').html('√').show();
ele.removeClass('wrong').addClass('normal');
}
},
'sendIt' : function (){
if(!jVal.errors) {
$('#jform').submit();
}
}
};
// ====================================================== //
$('#send').click(function (){
var obj = $.browser.webkit ? $('body') : $('html');
obj.animate({ scrollTop: $('#jform').offset().top }, 750, function (){
jVal.errors = false;
jVal.fullName();
jVal.birthDate();
jVal.gender();
jVal.vehicle();
jVal.email();
jVal.about();
jVal.sendIt();
});
return false;
});
$('#fullname').change(jVal.fullName);
$('#birthday').change(jVal.birthDate);
$('input[name="gender"]').change(jVal.gender);
$('input[name="vehicle"]').change(jVal.vehicle);
$('#email').change(jVal.email);
$('#about').change(jVal.about);
});
We’ve done it. Well, you have done it! I hope you enjoyed this tutorial and learned something. If you have any questions feel free to ask; I will be glad to talk more in the comments. Thanks for your time!
Get The Only Freelancer crash course you will ever need to read!
Web developer and designer, pure breed JavaScript nut. Have unstoppable and never-ending need of learning. Literally inhaling books. You can follow him on Twitter if you'd like, or check out what he's working on on Dribbble.
Friday, March 9th, 2012 15:59
Hi there,
I found that the regex for the email doesn’t allow for a period in the username, i.e. first.last@acme.com. How could I allow for that?
GREAT post btw!
Thursday, March 8th, 2012 22:53
Great tutorial, helped me a lot!
It works perfectly on my server but I have a question about the code:
You bound the fullname input field to run jVal.fullname everytime it changes and in the jVal.fullname function you create a new div tag everytime. Does this mean that everytime the user edits the fullname field, a new div is created on top of the old one?
Monday, February 27th, 2012 15:11
Hello,
The tutorial and script on Real-Time Form Validation Using jQuery are interesting. I tried it and found two problems:
1 – if the name of input field has only one word, example “input id=u” it this field is not validated, that is, no message is displayed by the script..
2 – if the input field is of type password, also this field is not validated, that is, no message is displayed by the script
Any help?
Monday, February 20th, 2012 21:43
I am having trouble getting the jquery to recognize the name of the text box if the asp.net page has a Master page. the ID and the name are different.
Monday, February 6th, 2012 21:18
Sir, thank you for sharing this.
This has been very helpful !
Friday, January 6th, 2012 10:08
Hi
I would like to add password & re-enter password fields, where the re-entered password should be same as that of password. How to do that with jVal. Can someone please help me on that…..?
If not, then it's time to learn how to:
You can trust 1stWebDesigner to help you become a better web designer!
- Jacob Cass | Just Creative
Just enter your name and email below and click Get Updates!
Astrid
Wednesday, May 19th, 2010 15:58
Great tutorial!
Everything is working fine with me until I use php to send the contact form to an email adress. Could somebody help me?
My form is send to:
The form.php sends the form to an email adress. But something goes wrong in combination with the validation of jquery.
I know it has got something to do with:
$(‘#send’).click(function (){
var obj = $.browser.webkit ? $(‘body’) : $(‘html’);
obj.animate({ scrollTop: $(‘#jform’).offset().top }, 750, function (){
jVal.errors = false;
jVal.fullName();
jVal.birthDate();
jVal.gender();
jVal.vehicle();
jVal.email();
jVal.about();
jVal.sendIt();
});
return false;
});
If I remove ‘return false’, the form is send to the email adress but of course the validation does not work the way it has to do.
I am kind of a newbie at Javascript so I cant figure it out…
Gian
Wednesday, May 12th, 2010 16:54
Hey, nice this plugin, but I think that is a little bug with date validation.
I tried 22-13-2020 and I got OK with month 13
hug
jhon
Thursday, May 20th, 2010 09:55
Is there anyway to validate dynamic generated element?
KLM
Thursday, May 13th, 2010 21:59
How would the function look without the scroll object?
Keiron Lowe
Monday, May 3rd, 2010 13:48
Fantastic Tutorial, I love this website :D
I’m assuming this doesnt send the email, this is just the validation?
Michal Kozak
Tuesday, May 4th, 2010 22:07
In the example, it sends the data you put into form field, but that data is not processed in any way :). It actually sends it to 1stwebdesigner’s home page, where it’s just NOT taken care of :).
Michal Kozak
Monday, May 3rd, 2010 19:04
Thanks a lot :).
Weblapkészítés
Thursday, May 13th, 2010 15:33
Hi Kozak!
Yess, this post is a great work, I understood it from zero javascript knowledge!
Best regards!