Code examples
Don’t use type="number"
The type="number"
input is intended for integers and includes features we don’t want (like stepper/scroll functionality) that is a nuisance to everyone
- Phone, credit card, pin etc. are not integers
- NVDA doesn’t fully support
type="number"
inputs at this time
Use type="text"
for number inputs
Use type=text
with inputmode="numeric"
with an input pattern and JS to filter out non-numeric characters.
The pin number will expire after 1 hour
Disabled and focusable number input (preferred)
- Using the
aria-disabled
attribute will allow the input to be focusable and more discoverable
The Security ID number will expire after 1 hour
Fully disabled number input (avoid)
- Fully
disabled
inputs are not focusable so may not be as discoverable in a form
Telephone number input
- Setting type=”tel” changes the keyboard for mobile app users
We’ll never sell or share your information
Developer notes
Name
- Include
for="input-id
in each<label>
label to associate it with the input - Use
aria-label="Input name"
as a last resort if a<label>
can’t be used - Don’t hide the label on focus
Role
- Identifies as a text input
Group
- Include
for="input-id
in each<label>
label to associate it with the input - Use
<fieldset>
and<legend>
to name a group of inputs.
Focus
- Focus must be visible