Why Doesn’t AutoComplete Always Work in Firefox?

If you’re the type of person that always allows Firefox to save your login credentials for the sites you visit, you might be very frustrated when you come across a site that doesn’t even prompt you to save the credentials. We’ve got the lowdown on what’s going on here.

Here’s that awful form I have to type into almost every day… I’m really getting tired of it.

why-doesn-and-8217;t-autocomplete-always-work-in-firefox photo 1

So I take a look into the source for the page, and here’s the culprit: the AUTOCOMPLETE=”off” on the form will tell Firefox to disable auto completing for that form. The form elements themselves also have the same tag on them.

why-doesn-and-8217;t-autocomplete-always-work-in-firefox photo 2

You’ll find this happens quite often on corporate vpns, banks, and other sites where they are worried about security and don’t want you to save your passwords, so they use this tag in their pages to prevent your browser from saving the credentials.

Your Best Option: Greasemonkey it!

You can use a greasemonkey script to re-enable the autocomplete on the form elements. You can find a number of them at userscripts.org:

http://userscripts-mirror.org/

Or you can write your own if you feel like it… for some reason the other scripts did not work on my screwy corporate vpn at work, so I created a new script that manually set the attributes of each.

var frm = document.forms[0];
frm.setAttribute(‘autocomplete’, ‘on’);
frm.elements[0].setAttribute(‘autocomplete’, ‘on’);
frm.elements[1].setAttribute(‘autocomplete’, ‘on’);

Hint: the Firebug extension is a great way to figure out what the elements are if you are writing a script.

More stories

Disable Administrator Logon Warning in Windows Home Server

Windows is always trying to save you from yourself and with Windows Home Server it is no exception. Anytime you log on as the administrator, you receive an annoying caution message, but we can disable this annoying message from coming up every time you log on to your server.

Increase Size of Windows Vista Taskbar Previews

It only took two days for somebody to come through on my offer of a bounty. Reader Shawn wrote in with a link to Vista Thumbnail Sizer, a utility written by Andreas Verhoeven, that performs exactly the features I was looking for.

Installing Windows Home Server

Windows Home Server is Microsoft’s upcoming version of Windows designed for storing your pictures, videos and files so you can share them between all the computers in your home.

Fix AVI Playback Bug in QuickTime 7.2 on MacOS X

Apple recently released a new version of QuickTime (v. 7.2) sporting a number of new features and enhancements.  Among the many enhancements – which include (finally) full screen support in the unregistered version – Apple added generic AVI playback, supporting codecs like Xvid, DivX and an enhanced

Make Firefox Quick Search Use Google’s Beta Search Keys

After becoming addicted to the new experimental Google Beta Shortcuts that let you navigate through results with your keyboard, it started to irritate me that I didn’t get to use the shortcut keys when I use a quick search in the Firefox address bar using the “?” keyword. Good thing it’s a very

Add Background Pictures To Excel 2007 Worksheets

Chart, numbers, worksheets … at a business presentation it can get rather monotonous looking at the same data sheets.  Here is a way to add background graphics to your Excel spreadsheets to spice up those meetings.

Quickly Remove Items from Windows XP Startup

Do you sigh when it comes to starting up your computer because it takes what seems an eternity to boot up?  Here is a quick tip which should make your computer start up faster by removing startup items quickly.

Fit DVD’s To DVD-R With DVD Shrink

If you want to backup your DVD’s many times the data on the disc goes over the 4.7GB mark. The most reliable software solution I use is DVD Shrink. This free application allows you to compress various parts of the DVD you want to backup. You can get rid of titles, long credit endings, and completely

Access Your MySQL Server Remotely Over SSH

So you’ve got MySQL on your web server, but it’s only opened to local ports by default for security reasons. If you want to access your database from a client tool like the MySQL Query Browser, normally you’d have to open up access from your local IP address… but that’s not nearly as secure.