HunTer AnDone
HunTer AnDone

Reputation: 132

how to Hide list default in input html?

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

Answers (2)

David Thomas
David Thomas

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

Shomz
Shomz

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

Related Questions