I am having an issue with pointer-events:none
css. I am trying to disable a combo box
.
Now this CSS works perfectly in Chrome and Firefox but in IE it works partially.
Though the combo box is still disabled in IE i am able to click on combo box and dropdown gets displayed which should not be. Please guide if i can use some patch for the same.
Below is the code:
.pointer-events {
pointer-events: none;
}
<select id="originPlaceId" name="originPlaceId" class="pointer-events" size="1" style="width:99%;">
<option value="Tiger">Tiger</option>
<option value="Lion">Lion</option>
</select>