I need to change minDate of jQuery's datetimepicker
. Currently the value for the minDate is null on the .change() method.
I am currently using the code below:
jQuery('#field_bvk123').datetimepicker({
onSelect: function(department_date)
{
$('#field_jv1rv7').datetimepicker('option', minDate, department_date);
}
});
Can anyone assist me here??