html input tab sequence

Solutions on MaxInterview for html input tab sequence by the best coders in the world

showing results for - "html input tab sequence"
Mara
19 Aug 2017
1<html>
2<head>
3  <title>Controlling TAB Order</title>
4</head>
5<body>
6  <form>
7    Field 1 (first tab selection):
8    <input type="text" name="field1" tabindex=1 /><br />
9    Field 2 (third tab selection):
10    <input type="text" name="field2" tabindex=3 /><br />
11    Field 3 (second tab selection):
12    <input type="text" name="field3" tabindex=2 /><br />
13  </form>
14</body>
15</html>