Many web developers often forget or do not use the tabindex parameter at all, which determines the sequence of transition between fields when pressing the Tab key. Thus, when moving from one field to another, several more elements click through, which sooner or later begins to destroy the nerve cells of users.
')
The solution is simple:
< form > < input type ="text" name ="login" tabindex ="1" >
< a href ="/remind/" > ? </ a >
< input type ="password" name ="password" tabindex ="2" > < input type ="submit" > </ form >
* This source code was highlighted with Source Code Highlighter .
Number 1 will first receive focus, number 2 will go next, and so on. The parameter tabindex may have tags