Reputation: 61
Hello I am facing an issue regarding autofill form in html. I have already used "autofill=off" in my html tag however I am still facing the problem of autofill suggestions. If you guys have any idea how to handle it using html or javascript please let me know.
Upvotes: 0
Views: 63
Reputation: 108
Just add the autocomplete attribute to your input tag like this:-
<form>
<input autocomplete="off">
</form>
Upvotes: 0
Reputation: 431
Try autocomplete="off"
on your input or same attribute on the whole <form>
Upvotes: 0