Reputation: 47
In the below image
when i am using tab button from password input box ,
1st its going to tokencode input box after that if i am using tab button again it should go to cancel but its going to image which is there in the right side. I am facing this issue only in Internet Explorer. please suggest me what to do?
Upvotes: 0
Views: 1673
Reputation: 1667
You can set the order of your tabbed elements with tabindex
like this:
Field 1 (first tab selection):
<input type="text" name="field1" tabindex="1" /><br />
Field 2 (third tab selection):
<input type="text" name="field2" tabindex="3" /><br />
Field 3 (second tab selection):
<input type="text" name="field3" tabindex="2" /><br />
Upvotes: 1