Home > Enterprise >  How to disable autocomplete in firefox 95 using html . I have tested with autocomplete = off, false,
How to disable autocomplete in firefox 95 using html . I have tested with autocomplete = off, false,

Time:01-02

How to disable autocomplete in firefox newer version 95 using html or javascript. I have tested with autocomplete = "off", "false", "none" , "Random string" but None of them is worked for me .

CodePudding user response:

Sometimes, setting autocomplete to off doesn't stop password managers from filling inputs.

Check the note under "Values": https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete

CodePudding user response:

Try adding a autocomplete="off" onto <form> element.

  • Related