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

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -