Answers for "remove form suggestions html"

2

how to remove suggestions from input field

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

dont show suggestions in input hs

<input
    id={field.name}
    className="form-control"
    type="text"
    placeholder={field.name}
    autoComplete="off"
    {...fields}/>
Posted by: Guest on December-09-2020

Code answers related to "remove form suggestions html"

Browse Popular Code Answers by Language