I'm currently writing a hybrid web app that will eventually be shipped to both Android and iOS. In the app, I require that the user be able to enter decimals.
Currently on Android, using input type="tel"
works as required, it allows me to enter numeric data and it allows a decimal to be placed between them. On iOS however, I'm faced with numbers and some symbols, no period:
The only reason I ask - instead of just using type="number"
is simply because I use a native banking app that allows a period on the keyboard input, so I was hoping it was something you could achieve possibly with the assistance of a Cordova / Ionic plugin?