0
I’m trying to remove the second, millisecond and Timezone fields but I can’t. I checked the documentation, I put showTimezone: false but still appears. How can I proceed?
Code that I’m using:
<script>
$(function() {
$('#hora_parada').timepicker({
timeOnlyTitle: 'Selecione a Hora',
timeText: 'Hora Selecionada',
hourText: 'Hora',
minuteText: 'Minuto',
currentText: 'Agora',
closeText: 'Selecionar',
});
});
</script>
I put it like this but it’s no use, all options appear yet.
– Diego
Try using this: $('#timeformatExample1'). timepicker({ 'timeFormat': 'H:i'});
– Daniel Saraiva