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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tab Index Difficulties

Status
Not open for further replies.

Bentley22

Programmer
Aug 29, 2001
205
CA
I'm using several different forms on my page, and none of them will accept a tab index. I tried specifying the tabindex for each one, and still no go. Can anyone suggest why this could be?

Heres one of my forms:

Code:
<form action=&quot;FormMail.pl&quot; method=&quot;POST&quot;>
<center>
<table width=&quot;90%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
<tr><td width=&quot;115&quot; class=&quot;bodytxt&quot;>
		Your Name:
</td><td width=&quot;%&quot; class=&quot;bodytxt&quot;>
		 <input type=&quot;text&quot; name=&quot;realname&quot;>
</td><td width=&quot;115&quot; class=&quot;bodytxt&quot;>
		 &nbsp;Associate's Name:
</td><td width=&quot;%&quot; class=&quot;bodytxt&quot;>
		 <input type=&quot;text&quot; name=&quot;sendname&quot;>
</td></tr>
<tr><td width=&quot;115&quot; class=&quot;bodytxt&quot;>
		Email:
</td><td width=&quot;%&quot; class=&quot;bodytxt&quot;>
		 <input type=&quot;text&quot; name=&quot;email&quot;>
</td><td width=&quot;115&quot; class=&quot;bodytxt&quot;>
		 &nbsp;Email:
</td><td width=&quot;%&quot; class=&quot;bodytxt&quot;>
		 <input type=&quot;text&quot; name=&quot;recipient&quot;>
</td></tr>
<tr><td colspan=&quot;4&quot; align=&quot;center&quot;>
		<input type=&quot;submit&quot; value=&quot;submit&quot;>
</td></tr>
</table>
</center>
</form>
 
I dont see where you have put in any tab index's. Heres an example:

<form>
Example Form:<br>
<input type=text tabindex=1> TabIndex 1 <br>
<input type=text tabindex=3> TabIndex 3 <br>
<input type=text tabindex=2> TabIndex 2
</form>


Todd Norris
Hope this helps !
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top