How can I have the typical number keyboard show up, but allow ":" to be entered as valid? I want an input where people can easily enter times such as, "01:32.59" etc.
When I do <input type="number">
the correct keyboard is displayed, but it won't allow the value ":"
If I use <input type="text">
the value works as valid, but the user has to click the number icon on the keyboard first, which isn't as user friendly for entering times.
Thanks in advance for your help.