1

Whenever I enter something to the input box in IE browser, a cross symbol appears at the other end. I am using CSS to add card image to display card type using jquery.addClass at the same place where the cross symbol appears and the card image overlaps with the cross symbol. Please let me know if there is any way I can remove the cross symbol.

abhiagNitk
  • 947
  • 9
  • 19

1 Answers1

1

Sure, this works in IE10 and above, I haven't tried other browsers..

.someinput::-ms-clear {
   display: none;
}

Or if you want to remove the padding as well:

.someinput::-ms-clear {
   width : 0;
   height: 0;
}
Robin Jonsson
  • 2,517
  • 1
  • 20
  • 35