i have a textbox follow by a selectbox, when i press "tab" on textbox, it doesnt go to selectbox. how to make it go to selectbox? is the solution required to use javascript? is there any workaround without using javascript?
editted:
<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>
i tried the selectbox on firefox, but fail. can it work on firefox? is it because of macos problem? textbox seem ok .