Does anyone REALLY know how to totally stop autocomplete on a field? I've tried:

autocomplete="off" (form and field)
spellcheck="false"
autocorrect="off"
autocapitalize="none"

...also tried jargon field names but I think it looks at the associated label too (that can't change).
For anyone wondering, I managed to solve this by changing my label from “city” to “location” and then used a CSS pseudo :before with content set to “city”. So it reads “City location” to the user. Horrible but it works and is simple enough to do.
I’m in Vue, so I’m actually grabbing the value of a data attribute that’s created from a prop set onto the label tag. E.g:

label:before {
content: attr(data-label);
}
You can follow @michaelpumo.
Tip: mention @twtextapp on a Twitter thread with the keyword “unroll” to get a link to it.

Latest Threads Unrolled: