EDIT: this question specifically concerns autofilling on Chrome for Android!
Here is a screenshot of my progressive web app running on Android (so it's running in Chrome):
I've pretty much read every topic on stackoverflow that has "disable" and "autofill" in the title, but I still haven't been able to find a solution.
Over the past year or two, there have been several different versions of Chrome, and in some, one of the following suggestions has worked:
<form>
element, as suggested here: 2019, Chrome 76, approach to autocomplete off<input>
element<form>
element combined with autocomplete="false" on the <input>
element... as suggested here: Disable autofill in HTMLinput type="search"
(which is actually what I'm trying to achieve), as suggested: 2019, Chrome 76, approach to autocomplete offNothing seems to work for my <input type="search">
.
Does anyone have a working solution>.
The problem with Chrome autofilling my search field, is that the suggestions are displayed over my OWN suggestions that are coming from an asychronous call to my database...
Any help would be much appreciated.
It seems that autocomplete="one-time-code" seems to work (for now). This works on mobile chrome, iOS safari and all common desktop browsers.