I am working with two input
fields that represent hours and minutes separately.
<input type="number" min="0" max="24" step="1" value="00" class="hours">
<input type="number" min="0" max="0.60" step="0.01" value="00" class="minutes">
This setup will normally display as:
0:0
Or:
5:3
Is there a way to format it to show:
00:00
Or:
05:03
I want it in the 24-hour time format, but constraints prevent me from using type="time".