Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changing the tab order in a table

Status
Not open for further replies.

doccom

Technical User
Dec 20, 2003
12
US
I have a fairly large table that is for quoting motorcycles. By default the tabs go from left to right, but i need them to go Driver 1 info then directly to Unit 1 info, so if a user only has one driver and one bike they won't have to go through all 4 drivers and units. By the way almost all the input boxes are
echo &quot;<input name='txtLast_Name_1' onBlur='lastnamecheck(this)'; type='text' id='txtLast_Name_1'>&quot;;

any help is appreciated
 
you could try the tabindex

<td tabindex=&quot;1&quot;><td tabindex=&quot;2&quot;>

you use that for forms so i dont know if it will work for tables

Listen All I ask is that You close out a Post You Started!!!!
 
&quot;<input tabindex='1' name='txtLast_Name_1' onBlur='lastnamecheck(this)'; type='text' id='txtLast_Name_1'>&quot;;

&quot;<input tabindex='2' name='txtLast_Name_2' onBlur='lastnamecheck(this)'; type='text' id='txtLast_Name_2'>&quot;;
 
Thank you very much that little bit of simple code saved hours of research, i couldn't find it anywhere. thank you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top