Removal of clear button for Search

Hi.

How can I remove the clear button (icon: X) of a search component while typing? The button shows on IE but Chrome!

Thanks!

Hi,

this is standard IE icon for all inputs. You can try to apply the following css selector:

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

Thank you so much!