Last active
August 29, 2015 14:09
-
-
Save mikbe/6cb1254a3cca53a2b8d2 to your computer and use it in GitHub Desktop.
Always start tabindex with 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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