Jills2000
02-04-2004, 05:06 PM
Hi,
I am having a problem setting the TABINDEX order on my form. Even after including the TABINDEX attribute on each element, the tab is skipping all but the last radio button.
Does anyone know why this may be happening? Any help would be much appreciated!!
Thanks in advance,
Jill
****************
* CODE:
****************
<html>
<body>
<!-- FORM PART ONE APPLICANT DETAILS -->
<fieldset>
<table>
<colgroup><col /><col /></colgroup>
<tr>
<th><label for="employeename">Name: </label></th>
<td><input id="employeename" name="employeename" type="text" tabindex="1"/></td>
</tr>
<tr>
<th><label for="employeenumber">Employee Number: </label></th>
<td><input id="employeenumber" name="employeenumber" type="text" tabindex="2"/></td>
</tr>
<tr>
<th><br/>Employee Status:</th>
<td><br/>
<input id="employeestatus" type="radio" name="employeestatus" value="Permanent" tabindex="3" />
<label for="employeestatus">Permanent </label><br/>
<input id="employeestatus" type="radio" name="employeestatus" value="Temp/Contractor" tabindex="4"/>
<label for="employeestatus">Temp/Contractor</label>
<input id="employeestatus" type="radio" name="employeestatus" value="Existing User" tabindex="5"/>
<label for="employeestatus">Existing User</label><br/>
</td>
</tr>
</table>
</fieldset>
</body>
</html>:)
I am having a problem setting the TABINDEX order on my form. Even after including the TABINDEX attribute on each element, the tab is skipping all but the last radio button.
Does anyone know why this may be happening? Any help would be much appreciated!!
Thanks in advance,
Jill
****************
* CODE:
****************
<html>
<body>
<!-- FORM PART ONE APPLICANT DETAILS -->
<fieldset>
<table>
<colgroup><col /><col /></colgroup>
<tr>
<th><label for="employeename">Name: </label></th>
<td><input id="employeename" name="employeename" type="text" tabindex="1"/></td>
</tr>
<tr>
<th><label for="employeenumber">Employee Number: </label></th>
<td><input id="employeenumber" name="employeenumber" type="text" tabindex="2"/></td>
</tr>
<tr>
<th><br/>Employee Status:</th>
<td><br/>
<input id="employeestatus" type="radio" name="employeestatus" value="Permanent" tabindex="3" />
<label for="employeestatus">Permanent </label><br/>
<input id="employeestatus" type="radio" name="employeestatus" value="Temp/Contractor" tabindex="4"/>
<label for="employeestatus">Temp/Contractor</label>
<input id="employeestatus" type="radio" name="employeestatus" value="Existing User" tabindex="5"/>
<label for="employeestatus">Existing User</label><br/>
</td>
</tr>
</table>
</fieldset>
</body>
</html>:)