Jquery DatePicker for Taking Birthdays
By nerkn - May 10th, 2010
put under the document ready function to initialize after document renders:
$(document).ready(function() {
$("#birthday").datepicker({
showMonthAfterYear:false,
minDate:'-90Y', maxDate:'-9Y',
yearRange: '1930:2000',
showOn:'focus', changeYear: true});
then there shoud be input element called (id of it not the only name attribute) birthday.
Then you'll have date can be selectable with 1930 and 2000. This range is good for me, perhaps also for you.

Comments
Post new comment