The timepicker mode. Tells the component to display the picker in ampm (12hr) format or 24hr format.
Examples
ampm
<input id="timepicker" width="312" />
<script>
$('#timepicker').timepicker({ mode: 'ampm' });
</script>
24hr
<input id="timepicker" width="312" />
<script>
$('#timepicker').timepicker({ mode: '24hr' });
</script>