You can perform HTML form validation automatically without using javascript. The validation enabled by applying the required attribute to prevent form submission when the input is empty.
1 2 3 4 | <form method="post"> <input type="text" name="uname" required> <input type="submit" value="Submit"> </form> |
Note: Automatic form validation does not work in Internet Explorer 9 or earlier.
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.