Using Tabindex to add a tab stop to a web page.

Donald F. Evans

May 15, 2011

Question

How can I add a tab stop to an HTML Tag that is not usually in the tab order?.


Answer

This is done by simply adding "tabindex=0" to any tag on the page. Then even tags like <h> and <div> can be placed in the tab order


Example

<div tabindex="0"> ... </div> <h2 tabindex="0">Heading goes here</h2>

Other Resources