I have a problem when I try to remove an option from a select using JS. When I run the following code with IE 11 I get 2 options while with any other browsers 3 options.
var x = document.getElementById("mySelect");
x.remove(0);
<select id ="mySelect" >
<option value="1">Test1</option>
<option value="2">Test2</option>
<option value="3">Test3</option>
<option value="4">Test4</option>
</select>
My IE version is 11.1088.15063.0 and update version 11.0.65 (KB4103768). I tested in different machines and for some users work with IE 11 (different version). I tried to clear the cache and reset the browser, anything else that you can think of?
collection.remove(index) is supported in IE : https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/remove