I wanted to disable all past date before current date, not with current date. I am trying by bootstrap datepicker library \"bootstrap-datepicker\" and using following code:<
var date = new Date(); date.setDate(date.getDate()-1); $('#date').datepicker({ startDate: date });