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
  • 48,972
  • 96
  • 224
  • 345

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
  • 143,310
  • 32
  • 282
  • 281
6

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

<input type="text" autocomplete="off"/>
Michał Miszczyszyn
  • 11,835
  • 2
  • 35
  • 53
3

Attribute for <INPUT ...>

AUTOCOMPLETE = ON | OFF

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

Good read

How to Turn Off Form Autocompletion

NullPoiиteя
  • 56,591
  • 22
  • 125
  • 143