0

Possible Duplicate:
How do you disable browser Autocomplete on web form field / input tag?

I have implemented my own autocomplete via jQuery but the browser covers up the first option with its own autocomplete info? Is there a way to turn off this field's autocomplete from the server side?

Community
  • 1
  • 1
Nick Faraday
  • 598
  • 5
  • 23

2 Answers2

11

Use

autocomplete="off"

in your INPUT tag.

D'Arcy Rittich
  • 167,292
  • 40
  • 290
  • 283
2
<input type="text" autocomplete="off" />
Wade Tandy
  • 4,026
  • 3
  • 23
  • 31