I need one HTML element (Label) on my page to be unavailable for IE ... currently I tried
Unselectable=ononselectreturn=false;
none of them help me.
For Firefox and Chrome, I set the following CSS property, which works absolutely fine ... but the problem is, as always, with IE.
CSS properties that you set:
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
user-select: none;
is there an alternative or IE hack?
The answer to Stack Overflow helped me, but not for IE.
source
share