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
I used the min attribute: min="' + (new Date()).toISOString().substring(0,10) + '"
min="' + (new Date()).toISOString().substring(0,10) + '"
Here's my code and it worked.