input tag no suggestions

Solutions on MaxInterview for input tag no suggestions by the best coders in the world

showing results for - "input tag no suggestions"
Rebeca
12 Jan 2017
1//To disable suggestions
2<input autocomplete="off" />
3
4//To enable suggestion
5<input autocomplete="on" />