How do I disable past dates on jQuery datepicker? I looked for options but don\'t seem to find anything that indicates the ability to disable past dates.
UPDATE: Th
Try setting startDate to the current date. For example:
startDate
$('.date-pick').datePicker({startDate:'01/01/1996'});