HTML/CSS - Input [Text] How to disable the browser from offering suggestings in the Dropdown?
The attribute:
<form autocomplete="off">
is, I think, what you're looking for.
html attribute:
autocomplete="off"
To disable auto-completion of input fields, use the HTML attribute autocomplete
with a value set to off
.
<... autocomplete="off" .../>