Disable previous and next dates in jquery date picker calendar
Disable previous and next dates in jquery date picker calendar
Disable previous dates:
$(".datepicker").datepicker({minDate:'0'});
Disable the next dates:
$(".datepicker").datepicker({maxDate:'0'});

Post a Comment