1

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?

william007
  • 13,874
  • 18
  • 76
  • 146

1 Answers1

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.

Community
  • 1
  • 1
aliqandil
  • 1,223
  • 14
  • 26