Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery datetime picker addon default time

So the default default time (not talking about the date) is 12:00 AM, how do i set it to something else?

talking about this addon http://trentrichardson.com/examples/timepicker/

like image 694
Andy Avatar asked Apr 17 '12 17:04

Andy


1 Answers

This is straight from the documentation on the link you posted.

$('#example7').datetimepicker({
    hour: 13,
    minute: 15
});
like image 172
John Fable Avatar answered Sep 27 '22 17:09

John Fable