David E. Ross wrote:
snipped to try something else<
I found this for Firefox but it works for my SeaMonkey install so just
replace Firefox with SeaMonkey when it defines where to look.
1. Close all Firefox Windows.
2. Navigate to the Firefox installation folder and open the file
nsLoginManager.js using your favorite text editor like notepad. In
general, the path should be:
C:\Program Files\Mozilla Firefox\components\nsLoginManager.js
3. Search for _isAutocompleteDisabled : function (element) {. The code
should look like this:
_isAutocompleteDisabled : function (element) {
if (element && element.hasAttribute("autocomplete") &&
element.getAttribute("autocomplete").toLowerCase() == "off")
return true;
return false;
},
4. Delete or comment the three lines after the searched line.
_isAutocompleteDisabled : function (element) {
//if (element && element.hasAttribute("autocomplete") &&
//element.getAttribute("autocomplete").toLowerCase() == "off")
//return true;
return false;
},
OR
_isAutocompleteDisabled : function (element) {
return false;
},
5. Save the file and close the text editor.
--
JD..
_______________________________________________
support-seamonkey mailing list
[email protected]
https://lists.mozilla.org/listinfo/support-seamonkey