Skip to content

Instantly share code, notes, and snippets.

@mikbe
Last active August 29, 2015 14:09
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/6cb1254a3cca53a2b8d2 to your computer and use it in GitHub Desktop.
Save mikbe/6cb1254a3cca53a2b8d2 to your computer and use it in GitHub Desktop.
Always start tabindex with 1
<html>
<head>
<title>TabIndex Example - 1</title>
</head>
<body>
This will jump from tab 1 to tab 2.
<br />
<label>Tab 1</label>
<input tabindex="1" type="text" />
<br />
<label>Tab 2</label>
<input tabindex="2" type="text" />
<br />
<label>Tab 3</label>
<input tabindex="3" type="text" />
<br />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment