I'm trying to check that the fields in the form below have been filled before it can be inserted into a database e.g. display a pop up with the fields that have not been filled in. It is just a simple Registration form.

<form name="form1" method="post" action="signup_ac.php">
<strong>Sign up</strong>
Username:<input name="username" type="text" id="username" size="30">
Password:<input name="password" type="password" id="password" size="15">
Name:<input name="name" type="text" id="name" size="30">
<select name="Month">
<option selected>Month</option>
<option value="January">January</option>
<option value="Febuary">Febuary</option
  </select> 
<select name=Year>
<option selected>Year</option>
<option value="2012">2012</option>
<option value="2011">2011</option>
 </select>
<input type="submit" name="Submit" value="Submit"> &nbsp;
<input type="reset" name="Reset" value="Reset">
</form>

How do I do this using JavaScript or jQuery.

link|improve this question

67% accept rate
1  
It will be easier if you fill the Select year using js like: function getYears(){for (i = new Date().getFullYear(); i > 1900; i--){$('#Year').append($('<option />').val(i).html(i));}} – Mahmoud Gamal Feb 5 at 13:59
True, and please limit your code example to some necessary snippets - the whole form is not relevant and 100 options with only the year changing either. Actually none of your code is relevant for the question. Form validation is a very general problem. – Sebastian Wramba Feb 5 at 14:05
feedback

3 Answers

up vote 4 down vote accepted

First of all, download the jQuery validate plugin and add it to your page. Then give each input you want to make a required field a class of required. Then in jQuery:

$(function() {
    $("form").validate();
});

The validate plugin is very feature rich, so you can have different types of message displayed, different validation checks etc should you require. There's more information on that in the documentation.

Finally, as with all javascript front-end validation, make sure you validate user input on the server side too, just in case a user has javascript turned off in their browser.

link|improve this answer
feedback

A simple solution (using jQuery) would be:

$(document).ready(function () {
    $('input').each(function () {
        var $this = $(this);
        var err = $this.attr('id') + ' is required.';
        var errElem = $('<span />').text(err).css({'color': 'red', 'font-weight': 'bold'});
        if ($this.val().length === 0) {
            $this.parent('td').append(errElem);
        }
    });
});

Make sure to do server-side validation as well. There are some users who disable JavaScript (and then this wouldn't run).

link|improve this answer
feedback

Below is what I will have a normal html file

<html>
<head>
<script language="javascript">

function validateMe() {

if (firstname is blank) {
alert("Enter first name");
form.first.focus();
return false;
}

if (lastname is blank) {
alert("Enter last name");
form.last.focus();
return false;
}

return true;
}

</script>
<body>

// Form here

<input type="submit" name="submit" value="Submit" onClick="return validateMe()">

</body>
</html>

if first name is blank, form never submit the form...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.