javascript - Twitter Bootstrap timepicker without AM/PM button in View side -


i have timepicker bootstrap: http://jsfiddle.net/c3b4t/66/ (demo)

now whant hide am/pm, possible javascript. or have remove bootstrap.timepicker.js?

i have try this:

$('#timepicker1').timepicker({     defaulttime: 'value',     minutestep: 1,     disablefocus: true,     format: 'hh:mm',     template: 'dropdown' }); 

but not working.

realy help

add option showmeridian follows,

$('#timepicker1').timepicker({     defaulttime: 'value',     minutestep: 1,     disablefocus: true,     template: 'dropdown',     showmeridian:false }); 

Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -