Reputation: 132
How do I remove the default list of input see in images:
html INPUT TEXT remove browser default dropdown
<input name="serch" type="text" />
Upvotes: 0
Views: 189
Reputation: 253318
Use autocomplete="off
as an attribute and value for the relevant input
element, in order to prevent the suggestions from being presented.
Upvotes: 0
Reputation: 37701
That's coming from the browser cache. If the browser is compliant, autocomplete="off"
should work:
<input type="text" name="name" autocomplete="off" />
Upvotes: 1