HTML 5 input type for alphanumeric keyboard on keyboard

We saw when the input type “Text” is selected on the mobile keyboard, it appears with text, when the input type “number” selected on the mobile keyboard appears only with numbers. And when input type input fields are selected, both the alphabet and numbers appear in them. Is there a way to show both the alphabet and the numbers on the keyboard when the input field is not a password, but plain text?

Like this

I hope you have received my request. Thanks.

+7
input html5 text alphanumeric
source share
1 answer

See this example for different types of keyboard input on mobile devices.

The keyboard that is closest to your wishes is probably the password keyboard:

<input type="password">

0
source share

All Articles