I am getting a problem in my application, where i want to disable html
anchor with css
, I have seen a solution in Disable link using css, which is working fine in Chrome
and Firefox
, but when i am opening my page to Internet Explorer
, It could not be disabling, I have gone through many links but i didn't get any solution for internet explorer, Please help me if you have any helpful link or answer. Thanks in advance
<a href="link.html" class="active">Link</a>
.active {
pointer-events: none;
cursor: default;
}