-2

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
  • 578
  • 4
  • 23

2 Answers2

9

Use

autocomplete="off"

in your INPUT tag.

D'Arcy Rittich
  • 153,827
  • 35
  • 271
  • 277
1
<input type="text" autocomplete="off" />
Wade Tandy
  • 3,776
  • 2
  • 18
  • 29