Reputation: 187
I'm currently using datetimepicker plugin from xdsoft.net and i'm trying to validate the selected days by disabling the previous days from the present day.
jQuery('#datetimepicker6').datetimepicker({
timepicker:false
});
Upvotes: 1
Views: 1304
Reputation: 101
jQuery('#datetimepicker6').datetimepicker({
timepicker:false,
minDate: "1",
});
Simple answer
Upvotes: 5