0

I noticed that new browsers (I'm talking especially about Firefox) have this after-refresh remember inputs' values.

How can I turn it off? I noticed that setting autocomplete to off helps but I don't want to do this on every single input / textarea / etc. I make. Is there some overall trick for this?

user2394156
  • 1,792
  • 4
  • 16
  • 33
  • https://developer.mozilla.org/en-US/docs/Mozilla/How_to_Turn_Off_Form_Autocompletion –  Jul 10 '13 at 18:50

1 Answers1

1

Just put this attribute on the form tag

<form autocomplete="off" action="...">
   //Your form inputs

</form>

It was already asked on the forum: disable browser save password functionality

Community
  • 1
  • 1
Oleksii Aza
  • 5,368
  • 28
  • 35