Answers for "remove suggestion from input"

2

how to remove suggestions from input field

<input type="text" autocomplete="off"></input>
Posted by: Guest on May-17-2021
5

disable browser autocomplete

<form method="post" action="/form" autocomplete="off">
[…]
</form>
Posted by: Guest on March-20-2020
0

input suggestion off

Add this property in your input tag:
autocomplete="off"
Posted by: Guest on July-29-2021

Code answers related to "remove suggestion from input"

Browse Popular Code Answers by Language