11

I want to disable the previously searches from my text input field. You know, the little box that pops up under the search bar with suggestions while you're typing ? Here, I'll attach a screenshot:

enter image description here

Richard Rodgers
  • 509
  • 1
  • 6
  • 16

1 Answers1

24

Simply set autocomplete="off" on your input element.

<input name="yourname" type="text" autocomplete="off"/>
Dylan Stark
  • 1,885
  • 11
  • 23