Disable Today and future dates in calendar
by Akram kamal
HTML
<p>Date:
<input type="text" id="datepicker">
</p>
JavaScript
$(function () {
$("#datepicker").datepicker({
maxDate: "-1d",
minDate: new Date(2007, 6, 12)
});
});