What is the order for tabindex in HTML?
Question
Like title says, what is the order for the tabindex
attribute in html?
Answer
Code example:
1 | <input tabindex="3"> |
Order:
<span tabindex="4">This wouldn't normally receive focus</span>
has (4) largest value. Next tab will give focus to the rest of tabnavigable elements in code source order.
Reference
This is the end of post