Form, is one thing we all don’t like to fill most of the time. From a long list of details to only 3 inputs to signup.

However, some who know the use of “Tab” on their keyboard will get frustrated if it’s not working. The almighty tabindex is a must for my point of view. It ease how we – the user – using the computer and browsing.
<input type="text" name="first_name" tabindex="1" /> <input type="text" name="last_name" tabindex="2" />
The number is where it will go from one to another one when “Tab” key is pressed. It would be annoyed if filling a full form where one need to keep between the mouse and the keyboard.





