Struggling with a form issue in IE8 where the input fields display a clear button, as seen below:
My attempt to fix this by adding the following CSS rule was unsuccessful:
.someinput::-ms-clear {
display: none;
}
Unfortunately, this solution does not work in IE8.
I need the clear button to disappear because IE8 does not properly handle the change
event to detect when the field is cleared. (In IE8, the click
event can be used, but even then the value is not cleared when the handler is called)
Any suggestions on how to resolve this issue in IE8? Thank you!