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
  • 47,321
  • 93
  • 214
  • 341

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
  • 138,460
  • 30
  • 271
  • 271
6

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

<input type="text" autocomplete="off"/>
Michał Miszczyszyn
  • 10,641
  • 2
  • 34
  • 53
3

Attribute for <INPUT ...>

AUTOCOMPLETE = ON | OFF

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

Good read

How to Turn Off Form Autocompletion

NullPoiиteя
  • 55,099
  • 22
  • 123
  • 139