|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
tab order
hi, I think I'm write posting this into client side.
I've got a form and I would like the tab order to be a certain way, that it isn't at the moment. Is there a way in html code to change the tab order, so that when I press the tab button, it goes in the order I want it to go? |
|
#2
|
|||
|
|||
|
RE: tab order
Yep.. you could set 'tabindex' attribute in each form element.
eg: Code:
<input type="text" tabindex="1"> <input type="text" tabindex="4"> <input type="text" tabindex="6"> <input type="text" tabindex="2"> <input type="text" tabindex="5"> <input type="submit" tabindex="3"> |
|
#3
|
|||
|
|||
|
RE: tab order
ah ok thanks alot,
have you got an idea what happens if I just set tabindex for the ones I need and let all the other things where I would get to with the tap button blank, would that work asweel, because it's quite a lot of things where I would have to put the tabindex if that doesn't work. |
|
#4
|
|||
|
|||
|
RE: tab order
You can keep some elements without setting tabindex. it will work in the order they are placed in form.
|
|
#5
|
|||
|
|||
|
RE: tab order
ah ok that's good to know, thanks alot
|
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > tab order |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|