If I use TAB on the keyboard then the cursor goes from 1 to 4 (1 → 2 → 3 → 4)
How can I skip number 3? I would like go 1 → 2 → 4.
<table>
<tr><td> <input type="text" value="1"></td><td><input type="text" value="2"></td></tr>
<tr><td> <input type="text" value="3"></td><td><input type="text" value="4"></td></tr>
</table>
If you set the tabindex = “-1” on the input itself of #3, you won’t be able to tab to #3