tabindex (HTML attribute)
Description
The tabindex
is used to define a sequence that users follow when they use the Tab key to navigate through a page. By default, the natural tabbing order will match the source order in the markup. In certain circumstances it may be necessary to override the default tabbing order, but it’s strongly recommended that you craft a page in a logical flow and let the browser work through it in the default order—an approach that negates the need for the tabindex
attribute.
A tabindex
can start at 0 and increment in any value. As such, the sequence 1, 2, 3, 4, 5 would be fine, as would 10, 20, 30, 40, 50. If you need to introduce a tabindex
, it’s advisable to use a sequence that contains intervals (like the second example provided), as this will give you the opportunity to inject other controls later if need be (for example, 10, 15, 20) without having to reindex all the tabindex
values on the page. Should a given tabindex
value be applied to more than one element (e.g. all links in one section given a tabindex
of “1”, and sidebar links given a tabindex
of “2”), the tabbing order of those affected elements will be as per the source markup order. Many people will choose to use this approach rather than a sequence with a defined interval, such as 5, 10, 15, because it allows for additional links or form controls to be added without the headache of re-numbering. If a tabindex
of “-1” is used, the element it’s applied to will no longer be keyboard focusable.
If a tabindex
is set anywhere on a page—even if it’s the hundredth link or the fiftieth form control—the tab order will start at the element with the lowest tabindex
value, and work through the increments. Only then will the tab order take in the remaining elements for which no tabindex has been set. As such, great care must be taken to ensure that adding a tabindex
doesn’t harm the usability of the page as a whole.
If the disabled attribute is set on an element which has a tabindex
, that tabindex
will be ignored.
Example
The tabindex
is set to "3"
for the link below:
<p>You can try our <a href="cakes.html" tabindex="3">lovely range of cakes</a>.</p>
Value
This attribute can take any numeric value.