Is there a way to make a textbox go to a selectbox when pressing "tab" without using JavaScript? I have tried setting the tabindex but it doesn't seem to work. I also tested it on Firefox and it failed. Could this be a MacOS problem?
Edited:
<html>
<input type="text" tabindex="1" />
<select tabindex="2" >
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</html>