problem in managing tabs.
Posted: Fri Sep 23, 2005 2:30 am
See this code i have problem in tabs management, when i use tab key it works horizontally means 1st I moves to top left field then goes to top right field in same row I want it to work it in vertical order like first top left and then 2nd field in the same column and so on.
Code: Select all
<form name="form1" method="post" action="">
<table width="100%" border="0">
<tr>
<td><input type="text" name="textfield"></td>
<td><input type="text" name="textfield4"></td>
</tr>
<tr>
<td><input type="text" name="textfield2"></td>
<td><input type="text" name="textfield5"></td>
</tr>
<tr>
<td><input type="text" name="textfield3"></td>
<td><input type="text" name="textfield6"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Submit"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</form>