Skip to main content

Creating a Simple HTML Form Validation System Using JavaScript

OK, so today we are going to create a simple Form Validator Script using JavaScript that would not let a HTML form be submitted unless all required field are filled in. JavaScript is widely used for this purpose as it does not need server processing hence no form sending and pageload is required.

When you are using data submission via form on your website there are a few other methods that you can employ other than JavaScript; first, not to use validation at all (NOT RECOMMENDED), second, to use validation in the script and make it show appropriate message (need pageload).

So definitely we’ll be using JavaScript and you should in most cases, too. Let’s kick off guys!

Now before we begin I want to tell you one thing, we will only be checking (validating) if all the required fields are filled or not and NOT whether what is filled in is acceptable. Of course we can use JavaScript to validate whether, let’s say the filled email address is appropriate or not but that would be the topic of some future posts.

So for now we just need to check all the required fields of the form to see if they are filled in or not. Suppose if we have a form (named "form") with four Input Boxes (namely ‘Name’,, ‘Address’, ‘Email’, ’PhoneNumber’), we can use the following piece of JavaScript code to check them:


  if(form.Name.value=='')
    alert("Name field is required. Please fill it in.");

  if(form.Address.value=='')
    alert("Address field is required. Please fill it in.");

  if(form.Email.value=='')
    alert("Email field is required. Please fill it in.");

  if(form.PhoneNumber.value=='')
    alert("Phone Number field is required. Please fill it in.");

Since form elements reside between the <form></form> tags, we would wrap the above code as a JavaScript function and make the form invoke it when ‘Submit’ button is pressed.


  <html>
  <head>

  <title>JavaScript Form Validation Script</title>

  
  <script language="JavaScript" type="text/JavaScript">

  function checkForm(thisform)
  {
    if(thisform.Name.value=='')
    {
      alert("Name field is required. Please fill it in.");
      return false;
    }
    if(thisform.Address.value=='')
    {
      alert("Address field is required. Please fill it in.");
      return false;
    }
    if(thisform.Email.value=='')
    {
      alert("Email field is required. Please fill it in.");
      return false;
    }
    if(thisform.PhoneNumber.value=='')
    {
      alert("Phone Number field is required. Please fill it in.");
      return false;
    }
    //if all is OK submit the form

    thisform.submit();
  }
  </script>


  </head>

  <body>
  <form name="form1" id="form1" method="post" action="--SCRIPT.PHP--">

    <table width="500" border="0" cellspacing="0" cellpadding="0">
      <tr>

        <td width="121">Name</td>
        <td width="379"><input name="Name" type="text" id="Name" /></td>

      </tr>
      <tr>
        <td>Address</td>
        <td><input name="Address" type="text" id="Address" /></td>

      </tr>
      <tr>
        <td>Email</td>
        <td><input name="Email" type="text" id="Email" /></td>

      </tr>
      <tr>
        <td>Phone Number</td>
        <td><input name="PhoneNumber" type="text" id="PhoneNumber" /></td>

      </tr>
      <tr>
      <!--This is NOT a Submit (type) Button which automatically submits the form on click, rather we are using
          Simple Button and the JavaScript code to submit it -->
        <td><input name="Submit" type="button" id="Submit" onclick="checkForm(this.form)" value="Submit" /></td>

        <td>&nbsp;</td>
      </tr>
    </table>
  </form>
  </body>

  </html>

In the above code, instead of hard coding the form’s name (or object name) in the function ‘checkForm’ we are passing it from the form. When any form elements is found to be empty respective message is shown via the Message Box (using alert() ).

To use the above code (JavaScript function) with your existing forms, you’d need to make some changes to the function regarding the name and number of form elements you want to validate. You’d also have to change the Message (alert) shown, if required.

One last thing, if the user has turned off Java Script or their browser does not support it, form would not be validated and you might end up receiving half-filled information for this scenario you could employ double validation using both JavaScript and server-side (in the script data is getting sent to). Of course it’s very unlikely but you should be ready for everything.

Previous Posts:

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

Introduction to Operator Overloading in C++

a1 = a2 + a3; The above operation is valid, as you know if a1, a2 and a3 are instances of in-built Data Types . But what if those are, say objects of a Class ; is the operation valid? Yes, it is, if you overload the ‘+’ Operator in the class, to which a1, a2 and a3 belong. Operator overloading is used to give special meaning to the commonly used operators (such as +, -, * etc.) with respect to a class. By overloading operators, we can control or define how an operator should operate on data with respect to a class. Operators are overloaded in C++ by creating operator functions either as a member or a s a Friend Function of a class. Since creating member operator functions are easier, we’ll be using that method in this article. As I said operator functions are declared using the following general form: ret-type operator#(arg-list); and then defining it as a normal member function. Here, ret-type is commonly the name of the class itself as the ope