I am having problems getting my head around the syntax to set the date range for the JqueryUI calendar.
this...
$(function() {
$('#DOB').datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'd MM yy',
minDate: new Date(1900, 11 - 1, 6)
});
});
is strangely giving me a range of the years 2000 - 2020. ALl I want to do is start at 1900. End date can be today.