I am attempting to use jquery to validate a date that is broken up into MM DD YYYY fields.
<form name="dateform" id="dateform">
<input type="text" name="month"/>
<input type="text" name="day"/>
<input type="text" name="year"/>
</form>
I can only find examples that use a single field, which is not what I want.
<form name="dateform" id="dateform">
<input type="text" name="date"/>
</form>
Any examples I can follow?