Learn About Html Tabindex
In Visual Studio TabIndex is a property that is accessible in each control, I thought there was no equivalent in plain html. So what I did w...

On further googling, I've found out that tabindex is a property that is existing on > html 4 document. So I tried, fortunately it worked and all my problems were gone.
Sample implementation:
<input type="text" name="c1" tabindex="1" />
<input type="text" name="c2" tabindex="3" />
<input type="text" name="c3" tabindex="5" />
<input type="text" name="c4" tabindex="4" />
<input type="text" name="c5" tabindex="2" />
Post a Comment