There is a drop-down in my web application. This drop-down is user-defined (not using the <select>
element). Inside this drop-down there is a down arrow. This arrow is creating by using background images on an absolutely positioned span
. This span
tag is blocking the click event of the drop-down. So, I've added pointer-events:none
to the span
tag. After adding this, it's working fine everywhere but in the Edge browser. Does Edge support pointer-event: none
? If not, what is the alternative for pointer-event: none
in Edge.
Below is the code which I used:
<div class="multi-dd" id="multi_dd_ddlProfession" role="application" cascadesto="ddlDiscipline">
<input class="multi-dd-txt" id="txtProf" role="combobox" aria-readonly="false" aria-describedby="spMultiExit" style="width: 260px;" aria-label="Multi Select Control Professions " type="text" readonly="readonly" value="Select All">
<span class="nir"></span>
</div>
.nir{
height: 28px;
margin-left: -30px;
vertical-align: bottom;
overflow: hidden;
pointer-events: none;
}