Showing posts with label tabindex property. Show all posts
Showing posts with label tabindex property. Show all posts

Friday, 20 July 2012


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.