Time Picker
Time Picker
In order to implement the Bootstrap Timepicker, make sure jQuery is installed and then implement the following
Include the Bootstrap Timepicker CSS and JSS file. You can download the plugin here
<div class="input-group bootstrap-timepicker timepicker">
<input id="timepicker1" type="text" class="form-control input-small" readonly>
<span class="input-group-addon"><i class="glyphicon glyphicon-time"></i></span>
</div>
Initialize the time picker with jQuery as follows
$('#timepicker1').timepicker();
For more options and methods Bootstrap Timepicker Documentation