Hi im using http://eonasdan.github.io/bootstrap-datetimepicker/ on bootstrap, specifically example number 4.
I added this property to take away the PM thing and be a
EDIT: There are much better answers on this thread than this one. I was just getting the hang of JavaScript at the time I answered. Specifically, see these two.
If you search within the development version of that script, there's a function called use24hours
that looks for a value of either true or false.
Adding use24hours:true
might do the job for you. Like so:
$(function () {
$('#datetimepicker5').datetimepicker({
use24hours: true
});
});