Search code examples
cssformsinternet-explorer-10

How can I disable the clear button that IE10 inserts into textboxes?


How can I disable the new functionality in Internet Explorer 10 that shows a little 'x' in a textbox when it's focused and I have content in it?

IE10 Clear Button


Solution

  • input[type=text]::-ms-clear {
        display: none;
    }