-2

i am using win8 and IE 10 , in this Browser i want remove Cross sign as shown in image (auto clear sign) in my web page. can any one help ...????

![enter image description here][1]

Sutirth
  • 922
  • 10
  • 14
  • Refeer this , it can help to to understand question more. http://stackoverflow.com/questions/13481577/how-can-i-disable-the-clear-button-that-ie10-inserts-into-textboxes – Sutirth Dec 19 '12 at 00:17
  • Since this isn't their website, I would assume it's a browser option they're wondering about, not really a code related question – Sterling Archer Dec 19 '12 at 00:18
  • i just give that screen shot of gmail for an example.. – Sutirth Dec 19 '12 at 00:51

3 Answers3

3

have this.

 ::-ms-clear {
    display: none;
 }
SyntaxError
  • 1,722
  • 1
  • 13
  • 21
2

From this question:

input[type=text]::-ms-clear {
    display: none;
}
Community
  • 1
  • 1
Jason Towne
  • 8,014
  • 5
  • 54
  • 69
1

You can do by setting the CSS

::-ms-clear {
    display: none;
}
Community
  • 1
  • 1
Praveen Kumar Purushothaman
  • 164,888
  • 24
  • 203
  • 252