Using a simple datepicker that limits input to be past only:
$( ".datepicker.past" ).datepicker({
maxDate: "0d"
});
I do not want to disable manual entries, but I do need the manual entry to conform to the datepicker limits. What's the easiest / best way to achieve this?