Skip to content

Instantly share code, notes, and snippets.

@mikbe
Created November 13, 2014 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikbe/e4b68c89f678556afd8e to your computer and use it in GitHub Desktop.
Save mikbe/e4b68c89f678556afd8e to your computer and use it in GitHub Desktop.
Never start tab index with zero!
<html>
<head>
<title>TabIndex Example - 0</title>
</head>
<body>
This will jump from tab 0 to the address bar.
<br />
<label>Tab 0</label>
<input tabindex="0" type="text" />
<br />
<label>Tab 1</label>
<input tabindex="1" type="text" />
<br />
<label>Tab 2</label>
<input tabindex="2" type="text" />
<br />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment