Hi,
I am showing the birthday option and have used the jquery ui date picker. The problem is that I want show past dates for example starting from 1950 till 2000 but I don't know how to do that, i tried this but it did not work:
$('#dob').datepicker({
showOn: 'button',
buttonImage: 'images/calendar.gif',
buttonImageOnly: true,
dateFormat: 'mm/dd/yy',
changeYear: true,
minDate: '-20Y',
maxDate: '+1M +10D'
});
Ref:
http://jqueryui.com/demos/datepicker/#min-max
Update:
Here is what, I am doing, you could fix that by updating the code there:
Thanks