⊗mkSpFrFTC 45 of 128 menu

Changing focus with a tab in HTML

tabindex

Given inputs:

<input value="3"> <input value="4"> <input value="1"> <input value="2"> <input value="5">

Make it so that pressing Tab moves the focus through the inputs in the order specified by the value attributes.

enru