tabindex problem

liunx

Guest
Do you think tabindex works in Netscape 4.7?<br />
<br />
How?<!--content-->yes it works. Just put tabindex=number in your form fields/ images/ href tags.<!--content-->HI,<br />
<br />
I used the same thing. Is this the way? please check the code bellow.<br />
<br />
<br />
--------------------------<br />
<br />
<form name="myForm"><br />
<input type="text" name="t" tabindex=2><br />
<br><br />
<input type="text" name="t2" tabindex=2><br />
<br><br />
<input type="text" name="t3" tabindex=5><br />
<br><br />
<input type="text" name="t4" tabindex=4><br />
<br><br />
<input type="text" name="t5" tabindex=1><br />
<br><br />
<input type="text" name="t6" tabindex=3><br />
</form><br />
<br />
<br />
--------------------------<br />
<br />
<br />
Thanx for your quick responce.<!--content-->yes, but you have two tabindex=2<!--content-->Tabindex is defined in HTML 4.0<br />
Duplicate tabindex values are resolved by taking them in source order.<br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex">http://www.w3.org/TR/REC-html40/interac ... f-tabindex</a><!-- m --><!--content-->
 
Back
Top