The tabIndex property of the HTMLOrForeignElement interface represents the tab order of the current element.
Tab order is as follows:
- Elements with a positive
tabIndex. Elements that have identicaltabIndexvalues should be navigated in the order they appear. Navigation proceeds from the lowesttabIndexto the highesttabIndex. - Elements that do not support the
tabIndexattribute or support it and assigntabIndexto0, 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.
Syntax
element.tabIndex = index; var index = element.tabIndex;
Value
index is an integer
Example
const b1 = document.getElementById('button1');
b1.tabIndex = 1;
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living StandardThe definition of 'tabindex' in that specification. | Living Standard | No change from Document Object Model (DOM) Level 2 HTML Specification. |
| Document Object Model (DOM) Level 2 HTML SpecificationThe definition of 'tabindex' in that specification. | Obsolete | No change from Document Object Model (DOM) Level 1 Specification. |
| Document Object Model (DOM) Level 1 SpecificationThe definition of 'tabindex' in that specification. | Obsolete | Initial definition. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
tabIndex
|
Chrome
Full support 1 |
Edge Full support 18 Full support 18 Partial support 12 Notes' Returns incorrect value for elements without an explicit tabindex attribute. See issue 4365703 for details. |
Firefox
Full support 1 |
IE Partial support 8 Partial support 8 Notes' Returns incorrect value for elements without an explicit tabindex attribute. See issue 4365703 for details. |
Opera
Full support Yes |
Safari
Full support 6 |
WebView Android
Full support 4.4 |
Chrome Android
Full support 18 |
Firefox Android
Full support 4 |
Opera Android
Full support Yes |
Safari iOS
Full support Yes |
Samsung Internet Android
Full support 1.0 |
Legend
- Full support
- Full support
- Partial support
- Partial support
- See implementation notes.'
- See implementation notes.
See also
- Accessibility of keyboard-navigable JavaScript widgets
- The HTML
tabindexglobal attribute.
HTMLOrForeignElement.tabIndex by Mozilla Contributors is licensed under CC-BY-SA 2.5.