Make validating input form using JavaScript in HTML
We all know the importance of validation in all manners. A web Developer must need to validate Input form to escape from Hacking or other unauthorized access. In this article we will learn how to make validating Input Form Using JavaScript in HTML. We will start from basic to some what high level of validation rules. First we must have to know what is means by validate input? Answer is quit simple. Validation means rules and encapsulation of data entering in a specific field. for example you have to take input in a field label as Email. In term of its validation. The input data in this field must have “@” sign and must have “.” character after “@” sign. These rules and specifications are called validation. Mostly we use JS (JavaScript) for validation. You may also use Ajax and other Server side language. In this tutorial we will deal with easy way to validate simple input form in HTML sing JavaScript :) . you may also like to read how to create simple php forum or Discussion Board.