I don’t have a test environment here to see how this option works, but sometimes it can work there with you.
You can force the order of "tabs
" between the fields using the tabindex
guy tabindex="1"
tabindex="2"
tabindex="3"
etc. But as I said I don’t have an environment to do the test, although I believe it should work on mobile.
See that:
The global attribute tabindex
indicates whether an element can receive focus
input (if it is focusable), if and in which position it should make
part of sequential keyboard navigation (usually with the Tab key,
hence your name).
Here’s the Mozilla documentation on tabindex
: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex
Practical example for you to test if it works:
<input tabindex="1" type="text" name="" id="">
<select tabindex="2">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
<input tabindex="3" type="text" name="" id="">
<select tabindex="4">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
go key, vc refers to "next"?
– Leandro Angelo
That, the green arrow to the right on the keyboard corner.
– user125144
To understand the problem I created this page link , with an input , a select, another input and another select... instead of navigating from the first input to the first select, it jumps to INPUT, even using TABINDEX, I believe it is a standard behavior of the mobile interface, but I don’t know what the alternative is to make the user respect the form input sequence.
– user125144