« See all FAQs for Spina - Premium Admin Template + Tablet Theme
Why is my select box not working properly in Google Chrome?
I was able to fix the select menu on Chrome adding the following code on application.js
$(‘select’).parent().each(function(index) {
$(this).css(‘position’, ‘relative’);
$(this).css(‘z-index’, 99-index);
});
And having the select input form inside a tag, like:
<select name=”dataFilme” data-placeholder=”Gênero” class=”{validate:{required:true}}” id=”FilmeGeneroId”> <option value=””></option> <option value=”8”>Ação</option>
</select>