jquery date validation on multiple fields
        Posted  
        
            by iain
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by iain
        
        
        
        Published on 2010-05-24T21:54:08Z
        Indexed on 
            2010/05/24
            22:01 UTC
        
        
        Read the original article
        Hit count: 407
        
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?
© Stack Overflow or respective owner