tabindex="integer" | Optional |
A number that indicates the sequence of this element within the
tabbing order of all focusable elements in the document. Tabbing
order follows a strict set of rules. Elements that have values other
than zero assigned to their tabindex attributes
are first in line when a user starts tabbing in a page. Focus starts
with the element with the lowest tabindex value
and proceeds in order to the highest value, regardless of physical
location on the page or in the document. If two elements have the
same tabindex values, the element that comes
earlier in the document receives focus first. Next come all elements
that either don't support the
tabindex attribute or have the value set to zero.
These elements receive focus in the order in which they appear in the
document. Note that reloading the current page does not necessarily
restart the tabbing sequence from the
"top." Therefore, controlling
tabbing sequence is most helpful when the logic of your focusable
elements is something other than the source code order of those
elements (e.g., directing tabbing to fields down table columns rather
than across rows).
HTML 4 and Netscape 6 limit the tabindex attribute
to the following elements: a,
area, button,
input, object,
select, textarea. To this list,
IE 4 adds applet, body,
div, embed,
isindex, marquee,
span, table, and
td. IE 5 adds every other renderable element. A
negative value in IE (only) removes an element from tabbing order
entirely.
Links and anchors cannot be tabbed to with the Mac version of IE 4,
so the tabindex for a elements is ignored in that version.
Example
<a href="chapter3.html" tabindex="3">Chapter 3</a>
Value
Any integer from 0 through 32,767. In IE, setting
tabindex to a negative value causes the element to
be skipped in tabbing order altogether.
Default
None.
Object Model Reference
[window.]document.getElementById(elementID).tabIndex