Answers for "html input hide suggestions"

2

how to remove suggestions from input field

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

input tag no suggestions

//To disable suggestions
<input autocomplete="off" />

//To enable suggestion
<input autocomplete="on" />
Posted by: Guest on August-27-2020

Code answers related to "html input hide suggestions"

Browse Popular Code Answers by Language