jQuery datepicker years shown - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T15:32:28Zhttp://stackoverflow.com/feeds/question/269545http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/269545/jquery-datepicker-years-shown2jQuery datepicker years shownJohn Boker2008-11-06T17:31:13Z2009-08-04T19:59:48Z
<p>With the jQuery datepicker, how does one change the year range that is displayed? On the jQuery UI site it says the default is "10 years before and after the current year are shown". I want to use this for a birthday selection and 10 years before today is no good. Can this be done with the jQuery datepicker or will I have to use a different solution?</p>
<p>link to datepicker demo: <a href="http://ui.jquery.com/repository/latest/demos/functional/#ui.datepicker" rel="nofollow">http://ui.jquery.com/repository/latest/demos/functional/#ui.datepicker</a></p>
http://stackoverflow.com/questions/269545/jquery-datepicker-years-shown/269561#2695617Answer by Shog9 for jQuery datepicker years shownShog92008-11-06T17:36:16Z2008-11-06T17:36:16Z<p>If you look down the demo page a bit, you'll see a "Restricting Datepicker" section. Use the dropdown to specify the "<code>Year dropdown shows last 20 years</code>" demo , and hit view source:</p>
<pre><code>$("#restricting").datepicker({
yearRange: "-20:+0", // this is the option you're looking for
showOn: "both",
buttonImage: "templates/images/calendar.gif",
buttonImageOnly: true
});
</code></pre>
<p>You'll want to do the same (obviously changing <code>-20</code> to <code>-100</code> or something).</p>
http://stackoverflow.com/questions/269545/jquery-datepicker-years-shown/269573#2695732Answer by KiwiBastard for jQuery datepicker years shownKiwiBastard2008-11-06T17:41:04Z2008-11-06T17:41:04Z<p>Adding to what @Shog9 posted, you can also restrict dates individually in the beforeShowDay: callback function.</p>
<p>You supply a function that takes a date and returns a boolean array:</p>
<pre><code>"$(".selector").datepicker({ beforeShowDay: nationalDays})
natDays = [[1, 26, 'au'], [2, 6, 'nz'], [3, 17, 'ie'], [4, 27, 'za'],
[5, 25, 'ar'], [6, 6, 'se'], [7, 4, 'us'], [8, 17, 'id'], [9, 7,
'br'], [10, 1, 'cn'], [11, 22, 'lb'], [12, 12, 'ke']];
function nationalDays(date) {
for (i = 0; i < natDays.length; i++) {
if (date.getMonth() == natDays[i][0] - 1 && date.getDate() ==
natDays[i][1]) {
return [false, natDays[i][2] + '_day'];
}
}
return [true, ''];
}
</code></pre>
http://stackoverflow.com/questions/269545/jquery-datepicker-years-shown/419283#4192830Answer by kbwood for jQuery datepicker years shownkbwood2009-01-07T05:26:08Z2009-08-04T19:59:48Z<p>au, nz, ie, etc. are the country codes for the countries whose national days are being displayed (Australia, New Zealand, Ireland, ...). As seen in the code, these values are combined with '_day' and passed back to be applied to that day as a CSS style. The corresponding styles are of the form show below, which moves the text for that day out of the way and replaces it with an image of the country's flag.</p>
<pre><code>.au_day {
text-indent: -9999px;
background: #eee url(au.gif) no-repeat center;
}
</code></pre>
<p>The 'false' value that is passed back with the new style indicates that these days may not be selected.</p>