Baseline Widely available
The tabIndex
property of the HTMLElement
interface represents the tab order of the current element.
Tab order is as follows:
tabIndex
. Elements that have identical tabIndex
values should be navigated in the order they appear. Navigation proceeds from the lowest tabIndex
to the highest tabIndex
.tabIndex
attribute or support it and assign tabIndex
to 0
, in the order they appear.Elements that are disabled do not participate in the tabbing order.
Values don't need to be sequential, nor must they begin with any particular value. They may even be negative, though each browser trims very large values.
ValueAn integer.
Examplesconst b1 = document.getElementById("button1");
b1.tabIndex = 1;
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3