dictating form element order

How do I dictate the order in which the cursor travels from form element to form element?<br />
Thanx in advance<br />
Rob<!--content-->In newer browsers (>MSIE4 and >NS6,7) you can set the tabindex of the individual elements.<br />
<br />
example:<br />
<br />
<form><br />
<input tabindex=1 type="file" name="name" size=20><br />
<input tabindex=3 type="file" name="add" size=20><br />
<input tabindex=2 type="file" name="zip" size=20><br />
<input tabindex=5 type="file" name="city" size=20><br />
<input tabindex=12 type="file" name="phone" size=20><br />
</form><br />
<br />
a lower number get focus early and a larger number gets focus later.<!--content-->
 
Back
Top