I'm having trouble with google chrome for android.
My select
tag in html doesn't work there, but it works on desktop google chrome and other browsers, even in safari and apple mobile devices, just not in google chrome for android.
I've tried other apps that have normal selects and they seem to work in mobile google chrome.
Here's an example of what's happening:
I have no idea how to fix this issue. If anyone could give me hints on what could be the reason.
This is the select:
<select class="form-control" name="cardType" ng-model="payment.cardType" required>
<option value="AMEX">AMEX</option>
<option value="DINE">DINE</option>
<option value="DSVR">DSVR</option>
<option value="MCRD">MCRD</option>
<option value="VISA">VISA</option>
</select>