How can I set the default Hours and minutes as \"00:00\". Here I want to set only time not date. I am using the following code for datetimepicker. In this code how can I set
Simplified version of @Freddy's answer.
var dateNow = new Date(); $('#current_date').datetimepicker({ defaultDate:moment(dateNow).startOf('hour') });
startof can take various arguments. More details in MomentJS documentation.
startof