So I've run into a bit of an issue while working with the jQuery Validation Plugin. I have 3 select tags next to each other so a user can enter their birthday. How do I go about having 1 validation message for 3 select tags? I've heard maybe a custom rule can be done?
Here's the HTML and I've included a jsfiddle.
<form id="commentForm" action="" method="post">
<p>
<label for="month">Birthday:</label>
<select name="month" class="required select">
<option value="">Month</option>
<option>Jan</option>
<option>Feb</option>
</select>
<select name="day" class="required select">
<option value="">Day</option>
<option>01</option>
<option>02</option>
</select>
<select name="year" class="required select">
<option value="">Year</option>
<option>1990</option>
<option>1991</option>
</select>
</p>
<input type="submit" value="Sign Up" class="button">
</form>
This is an example of what's currently going on.
Thanks in advance.