How do you turn this off browser suggestions on html input?
Add autocomplete="off" onto <form> element; Add hidden <input> with autocomplete="false" as a first children element of the form.
Actually you can disable the autofill for usernames and passwords for just one site. Go to settings in the Chrome browser then to passwords. Scroll down to find the website that you do not want autofilled. Then you hit on the 3 dots and remove it from the list of saved passwords.
Just use autocomplete
on your inputs:
autocomplete="off"
Something like:
<input type="text" autocomplete="off">
You can always switch back to autocomplete="on"
when required.
<input type="text" class="form-control" autocomplete="off" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With