Html Select tabindex not working correctly in Chrome Browser
- by Shauni
Hello there, this is a problem I'm currently facing :
I've made a
<select id="nationalityArea.id" tabindex="6" name="nationalityArea.id">
<option value="null"></option>
<option value="619">Îles Cook</option>
<option value="646">Îles Féroé</option>
<option value="625">Îles Salomon</option>
<option value="598">Îles Vierges Américaines</option>
<option value="572">Îles Vierges Britanniques</option>
</select>
Looks fine right ?
The problem is that the tabindex method works perfectly on firefox and internet explorer but not on chrome...
I think the problem came from the
< g:select name="nationalityAreaId" from="${myValue}" tabindex="6" optionKey="id" value="${user?.profile?.nationalityAreaId}" noSelection="['null': '']"/
But not being a Browser specialist is hurting me on this problem. Has anyone already faced this ? And more importantly, found a solution ?
Thanks