I have a textbox, where I input a word, it will provide a list of suggestion based on that word (just like keyword suggestion of google search), but the list of suggestion now is hidden under the textbox history. How should I disable the textbox history?
Asked
Active
Viewed 4,589 times
1
-
3use `autocomplete="off"` – slash197 Aug 23 '13 at 11:45
-
Possible duplicate: http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag – Amal Murali Aug 23 '13 at 11:46
1 Answers
0
To Disable Auto Complete Use:
<input type="text" autocomplete="off" />
But Disabling it will be a problem for you too! where do you want to show your own suggestions?
Check this link, it's a full demonstration for your purpose.
It's not exactly brief, but quick reading is possible.
Hope It Helps.