tabindex property
tabindex attribute is used to set tab order for element.
<input name="first" tabindex="2" type="text" />
<input name="second" tabindex="3" type="text" />
<input name="third" tabindex="1" type="text" />
Above input box will highlight in sequence : third,second,first when we press tab key.
No comments:
Post a Comment