Circular Tab Indexc

liunx

Guest
Hello,<br />
Suppose I have the following form:<br />
<br />
<form><br />
Val1:<input type=text tabindex=1 name="val1"><br><br />
Val1:<input type=text tabindex=2 name="val2"><br><br />
<input type=submit tabindex=3 name="Submit"><br />
<input type=reset tabindex=4 name="Delete"><br />
</form><br />
<br />
If I use the tabulator once I am on the "Delete" button, I want to be back on field one again (val1).... How do I do it?<br />
With the above code, I start with field 1 but after field 4, I go anywhere in the web page!!!.<br />
<br />
Thanks<br />
Elisabeth<!--content-->You can't, people sometimes use the tab button to select links on your page, taking that away from them would cause some users a great inconvenience.<br />
You are supposed to use tabindex to create a logical tab order through your page not to limit the number of items the tab button can select.<!--content-->
 
Back
Top