In newer versions of Firefox, there is a new function that remembers the material that was filled in the form and re-fills the form with these values โโwhen updating (perhaps in other situations?).
The problem is that we have a rather complicated web application that uses a fair bit of ajax and hidden form fields that are never populated by the user, but javascript. Because of this new โfunction,โ we get a lot of errors when updating the form, because these fields are unexpectedly filled with invalid values.
So I'm looking for a way to disable this feature without disabling autocomplete. (because it is useful for fields that are filled by our customers)
if i put
autocomplete='off'
in my html, the effect is disabled, but it loses autocomplete (obviously). the problem is filling in the fields after the update without any user action.
source share