I\'m using the bootstrap ready date time picker from http://eonasdan.github.io/bootstrap-datetimepicker/ and it\'s working nicely but for one issue. I have a picker setup just f
The catch is that hh is for format 12 hours and HH is for 24 hours.
24 hour format
$(function () { $('#customElement').datetimepicker({ format: 'HH:mm', }); });
12 hour format
$(function () { $('#customElement').datetimepicker({ format: 'hh:mm', }); });