I want to have a time input field where users can only select full hours. In my example it would be 00:00, 01:00, 02:00 and so on. That is why I set the step attribute to 3600. Because 3600 seconds are equals to one hour. This is my code:
<label for="appt-time">Choose an appointment time: </label>
<input id="appt-time" type="time" name="appt-time" value="00:00" step="3600">
This works when I use the arrow keys to select the time. But when I click on the hour icon inside the input field then I can select minutes as you can see in the picture below. What can I do so that the user can only select hours?
