<input type="time">

Yepkoo

Yepkoo
Staff member
Provides time input in the html input box.

For example, our input box where we allow time entry between a minimum of 05:00 and a maximum of 21:15.

HTML:
<input type="time" min="05:00" max="21:15">
 
Top