Touch not working with Microsoft Edge browser

Hey, I have a really simple app that I built using ionic creator. The touch on the form select inputs seem to work on any browser except Microsoft Edge. Clicking with mouse etc works fine but touch does not.

Does anyone know how to fix this? Is it an issue with my code or the browser? Code below:

            <label class="item item-select" name="Coffee selections">
                <span class="input-label">Select Coffee</span>
                <select id="selectCoffee" 
                        ng-model="coffeeOrder.name">
                    <option ng-repeat="coffeeType in coffeeTypes">{{coffeeType.name}}</option>
                </select>
            </label>
1 Like

I have some issues with select on Windows 10 Phone which uses Microsoft Edge too. I disabled ionic tapping and it works. Here is what I do
<select data-tap-disabled=“true” …>
Hope this works for you.