Disable future dates in jQuery UI Datepicker Disable future dates in jQuery UI Datepicker jquery jquery

Disable future dates in jQuery UI Datepicker


Yes, indeed. The datepicker has the maxdate property that you can set when you initialize it.

Here's the codez

$("#datepicker").datepicker({ maxDate: new Date, minDate: new Date(2007, 6, 12) });


$(function() { $("#datepicker").datepicker({  maxDate: '0'}); });


Try This:

$('#datepicker').datepicker({    endDate: new Date()});

It will disable the future date.