jQuery validation date range issue
问题 I have a number of spots in my code where I have pairs of related start and end date fields (range). I need to validate that the start is before the end date. I'm using the jQuery validation plugin. Here's my code: http://jsfiddle.net/jinglesthula/dESz2/ Markup: <form id="myform"> <input type="text" name="startDate" id="startDate" class="validDate" /> <br/> <input type="text" name="endDate" id="endDate" class="validDate" /> <br/> <input type="submit" /> </form> js: $(function() { // simple