Kiko
Kiko

Reputation: 187

XDSOFT JQPlugin -> DateTimePicker: How to disable previous days?

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

Answers (1)

HdnTesla
HdnTesla

Reputation: 101

jQuery('#datetimepicker6').datetimepicker({
    timepicker:false,
    minDate: "1",
});

Simple answer

Upvotes: 5

Related Questions