I am using the JQuery Datepicker in which I want to set a static start date, where any date before the specified is either disabled or blanked out. I have tried using the MinDate setting but nothing has worked. Maybe I am misunderstanding what MinDate actually does?
Edit, here's the code I am trying (setting the minDate to 2015-12-01):
<script>
$( function() {
$( "#datepicker" ).datepicker({
dateFormat: 'DD, d MM yy',
minDate: new Date(2015, 12 - 1, 01)
})
});
</script>
As sourced from this page: Link