I'm using bootstrap time picker
This is working, its script is like
<script type="text/javascript">
jQuery('.timepicker').timepicker({
format: 'LT',
orientation: 'top',
defaultTime: '',
});
</script>
i want to disable minutes so that users can only change hours.

Instead of disabling the minutes, set the
intervalto60so the loop goes like10:00AM -> 11:00AMand doesn't affect the minutes.timeFormatcould behh:mmporHH:mmdepending on your 12-hour or 24-hour requirement.