Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Is it possible to disable autocomplete only on selected websites?

  • 1 nzaghachinzaghachi
  • 1 nwere nsogbu anwere nsogbu a
  • 23 views
  • Nzaghachi ikpeazụ nke cor-el

more options

I use firefox to place orders at work and every 5 digit number i enter is remembered on one website and I am trying to disable autocomplte for that one website but allow it on all the sites so my bosses dont have to enter information every time they log in...

I use firefox to place orders at work and every 5 digit number i enter is remembered on one website and I am trying to disable autocomplte for that one website but allow it on all the sites so my bosses dont have to enter information every time they log in...

All Replies (1)

more options

Is this part of a login form or just autocomplete in a normal web form input field?

Saved form data is connected to the name of a field and not restricted to a website.

You could consider to create a GreaseMonkey or Scriptish script to add an autocomplete=off attribute to input fields on web sites where you do not want to use this.


var f = document.querySelectorAll('input[type="text"]');
for (i=0; f[i]; i++) { f[i].setAttribute('autocomplete', 'off'); }