6

how can i remove the focusin dropdown that you see in this image?enter image description here

by css or javascript? How?

thanks.

itsme
  • 45,343
  • 90
  • 210
  • 334

3 Answers3

17

Use autocomplete="off":

<input type="text" autocomplete="off">

However, this is a non-standard attribute for HTML version < 5. In HTML5 you can freely use this attribute, see the reference:

VisioN
  • 132,029
  • 27
  • 254
  • 262
6

If that's input of type text then you can do it by specifying attribute autocomplete:

<input type="text" autocomplete="off"/>
Michał Miszczyszyn
  • 9,122
  • 2
  • 32
  • 51
3

Attribute for <INPUT ...>

AUTOCOMPLETE = ON | OFF

 <input type="text" autocomplete="off">

Good read

How to Turn Off Form Autocompletion

NullPoiиteя
  • 53,430
  • 22
  • 120
  • 137