Changing autocomplete behavior - Firefox: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
m (specified: chrome errors)
mNo edit summary
Line 1: Line 1:
The [[Location Bar]], the [[Search Bar]] and some form fields on web pages have autocomplete dropdowns that appear with a list of previously entered data. To remove them, you will need to [[Firefox : FAQs : Edit_Config | edit your config files]].
The [[Location Bar]], the [[Search Bar]] and some form fields on web pages have autocomplete dropdowns that appear with a list of previously entered data. To remove them, you will need to [[Firefox : FAQs : Edit_Config | edit your config files]].


: ''Note that this is not a clean solution. It will cause some errors appear in the [[JavaScript Console]] if you have [[Dev : Useful prefs | chrome errors enabled]] and may cause the browser to malfunction.''
''Note that this is not a clean solution. It will cause some errors appear in the [[JavaScript Console]] if you have [[Dev : Useful prefs | chrome errors enabled]] and may cause the browser to malfunction.''


In <code>userChrome.css</code>, add the following lines:
In <code>[[userChrome.css]]</code>, add the following lines:
  /* Remove autocomplete dropdown */
  /* Remove autocomplete dropdown */
  #PopupAutoComplete > .autocomplete-tree { display: none !important; }
  #PopupAutoComplete > .autocomplete-tree { display: none !important; }
Line 10: Line 10:
  .autocomplete-history-dropmarker { display: none !important; }
  .autocomplete-history-dropmarker { display: none !important; }


You may want to [[Firefox : FAQs : Enable Inline Autocomplete | enable inline autocomplete]] instead.
 
You may also want to enable [[inline autocomplete]].

Revision as of 04:34, 16 April 2005

The Location Bar, the Search Bar and some form fields on web pages have autocomplete dropdowns that appear with a list of previously entered data. To remove them, you will need to edit your config files.

Note that this is not a clean solution. It will cause some errors appear in the JavaScript Console if you have chrome errors enabled and may cause the browser to malfunction.

In userChrome.css, add the following lines:

/* Remove autocomplete dropdown */
#PopupAutoComplete > .autocomplete-tree { display: none !important; }

If you also want to remove the dropdown button at the far right of the Location Bar, add the following line:

.autocomplete-history-dropmarker { display: none !important; }


You may also want to enable inline autocomplete.