How to set time format hh:mm:ss for textbox in html5 -
how set textbox format hh:mm:ss in html5. current format showing hours , minutes. want seconds also.
you can set step of 1
second make seconds count:
<input type="time" step="1">
if want better --:--:--
, can set initial value of 00:00:00
:
<input value="00:00:00" type="time" step="1">
Comments
Post a Comment