Setting minDate on jQuery datepicker -100y
Ok so I want the range for my datepicker to be like so:
This year - 100 years. That's all I want to restrict. Below is my following code... But it's showing 1991 - 2001.. I want to show 1914 - 2001...
- $( ".datepicker" ).datepicker({
- dateFormat: "yyyy-mm-dd",
- maxDate: "-13y",
- minDate: "-100y",
- changeMonth: true,
- changeYear: true
- });