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:
Heres one of my forms:
Code:
<form action="FormMail.pl" method="POST">
<center>
<table width="90%" border="0" cellspacing="0" cellpadding="0">
<tr><td width="115" class="bodytxt">
Your Name:
</td><td width="%" class="bodytxt">
<input type="text" name="realname">
</td><td width="115" class="bodytxt">
Associate's Name:
</td><td width="%" class="bodytxt">
<input type="text" name="sendname">
</td></tr>
<tr><td width="115" class="bodytxt">
Email:
</td><td width="%" class="bodytxt">
<input type="text" name="email">
</td><td width="115" class="bodytxt">
Email:
</td><td width="%" class="bodytxt">
<input type="text" name="recipient">
</td></tr>
<tr><td colspan="4" align="center">
<input type="submit" value="submit">
</td></tr>
</table>
</center>
</form>