gaurav ranjan
gaurav ranjan

Reputation: 47

Tab is not working properly in Internet Explorer

In the below image

enter image description here

when i am using tab button from password input box ,

enter image description here

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

Answers (1)

Marouen Mhiri
Marouen Mhiri

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

Related Questions