I have this design where the user inputs some text in input type=text and it is validated via jQuery. Now when user inputs some data, IE10 shows an X
input type=text
X
The following CSS worked for me
CSS
input::-ms-clear, input::-ms-reveal { display: none; }
See ::-ms-clear and ::-ms-reveal for extra information.