Every answer I could find did not work for me. The most irritating part about my situation was how Android populated the notes
field with a login name, resulting in erroneous notes being entered into the database.
I thought about how typing into the text input clears the Android autofill and the below trick worked. Note that simply clearing the value did not remove the autocomplete, I had to set the field's value. Immediately clearing the value after setting a value also did not work. The delay is needed for Android chrome to see a change and remove the filled in value.
Bonus: doing this action on the notes
field caused Android to empty the other autocompleted elements in my form.
The function setTimeout( callback, msec )
is javascript, thus a programmer could implement this without using jQuery.