JqueryUI Datepicker Widget - Relative Min Max options
Turns out I am needing to have some date range restrictions on my datepicker. Need user to only be able to select a relative range from today. Including today and 10 days later, for example:
$(".datepickerDateSent").datepicker({ minDate: 0, maxDate: "+10D" });
http://api.jqueryui.com/datepicker/#option-minDate
$(".datepickerDateSent").datepicker({ minDate: 0, maxDate: "+10D" });
http://api.jqueryui.com/datepicker/#option-minDate
Comments
Post a Comment