Muthukumar M
Muthukumar M

Reputation: 1126

Radio button tab focus is not working properly after select any one radio button

I have problem with tab focus using radio button after select any one of them. please check this eg. http://jsfiddle.net/muthukumar0705/yGeGr/7/

before selecting any radio button place the cursor on first textbox in eg and click tab. Tab focus is working fine is move textbox,radio button,textbox radio button.. but when i selected any one of the radio button. the tab focus will is not like above.

what i need is the tab focus alway move like textbox,radio button,textbox,radio button... when i select radio button or not. How should i do this?

Upvotes: 3

Views: 7074

Answers (1)

Matthew Riches
Matthew Riches

Reputation: 2286

You should use tab index

tabindex="1"
tabindex="2"
etc...

W3C link for tabindex

Upvotes: 1

Related Questions