Reputation: 8359
I am using Datepicker and I wonder how I can configure so users cant pick less the current day?
Solved: $("selector").datepicker({ minDate: "+0D" });
Upvotes: 2
Views: 99
Reputation: 91
Are you using jquery-ui's datepicker? it has an option for your needs (minDate)
http://jqueryui.com/demos/datepicker/
btw, You will have to verify input on server side, data could be spoofed
Upvotes: 2