Required
Actionable elements (web links, form objects such as edit fields or buttons, etc.) MUST appear in a logical tab order. Tab order normally runs left to right, top to bottom. Focus should wrap to the top when the tab key is pressed after the last actionable item is reached.
Using the tabindex attribute can help keyboard users quickly navigate to the most important parts of your page
Although the use of H tags now makes for a very nice way to navigate pages, this is only available to users of screen readers and certain browsers like Opera. So, using tabindex is another way to make navigation easy for keyboard users.
Typically, the tab key will take a user from one link to the next. If you use tabindex, the tab key will take you to the tabindexes first and then normal tabbing will resume allowing readers to navigate the page's remaining links in the order they appear.
Changing the tab order is easy. We merely assign a tabindex value to any item we want to prioritize.
Guidelines:
Notice the Search box has a tab order of 107, placing it at the bottom of the tab order page. This would be a good place to use tabindex to explicitly set the tab order.
Using the AIS Toolbar to Test Tab Order you should select "Show Tab Order from the "Structure" Menu Tab.
AIS Toolbar Results shows the tab order in red. Notice the search field is numbered 107, but is at the very top of the page. This is not ordered well.
No Known SEO Issues.