Created
November 13, 2014 18:01
-
-
Save mikbe/e4b68c89f678556afd8e to your computer and use it in GitHub Desktop.
Never start tab index with zero!
This file contains hidden or 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 - 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