I am trying to hide the clear input button in IE10 when it is in compatibility mode.
I used this:
input[type=text]::-ms-clear, input[type=text]::-ms-reveal {
display: none;
}
This works for IE10 standards mode, but not for compatibility mode.
Any ideas how I can do this? Is there a way to disable it using JavaScript?
source
share