Search code examples
jquery-uibootstrap-datetimepicker

Remove AM and PM on Bootstrap datetimepicker


I am using Eonasdan Bootstrap 3 Datetimepciker. Here I don't wnat to display the AM and PM in screen. How can I remove this in screen?


Solution

  • Use this code by passing required format in format option you can achieve 12 hr format

    $('#datetimepicker1').datetimepicker({format: 'HH:mm'});