I have the following jQuery code:
$(".dtp").datetimepicker({
format: 'Y-M-D hh:mm',
minDate: new Date()
});
I am using datetimepicker
from Bootstrap and I'm trying to disable some days, based on information in my database.
For example all Mondays and Saturdays could be disabled. I can't seem to find information about how to do this.