Just thinking, how good would it be if there was a cross-platform property on elements that allow input (text, password. Text area etc) and you could specify what characters display
So instead of the standard keyboard showing up when you click a text field, you could have this in your HTML:
And only the characters:
Because sometimes you don't want every character. Just a random thought.
So instead of the standard keyboard showing up when you click a text field, you could have this in your HTML:
Code:
<input type="text" data-characters="[m,a,r,k,1,2,3]" name="textfield" />
And only the characters:
- m
- a
- r
- k
- 1
- 2
- 3
Because sometimes you don't want every character. Just a random thought.