Driver Robot automatically downloads the latest drivers for your PC and keeps it running smoothly. Inject new life into your old PC and fix existing problems instantly. Run a free driver scan now and put your PC back in business.
Looking for a dedicated hosting solution with 24/7/365 U.S.-based, English speaking phone support? Visit Rackspace for a reliable, managed hosting solution that will let you focus on the bottom line - your business, while they make sure your website stays online.
Trying to login to Paypal, your bank or credit card account, airline website, Yahoo, MSN, or any number of other online sites and for some reason Firefox doesn't ask you if you want to save your password? So, you have to type it in every time you want to log in. We show you how to force it to remember your passwords.
As far as security is concerned, it's actually a good thing that Firefox doesn't allow you to save your password for these sites, given the prevalence of Firefox on public computers, such as those in libraries, schools, and airports. You wouldn't want someone to sit down behind you, after all, and be able to login to your credit card account with the click of a button.
It's important that you only use this on a computer you trust, such as your home computer. Here's how it works:
Firefox (and other browsers) are setup so that websites can request the "autocomplete" (password saving functionality) feature to be turned off. That means, when you visit their website, you won't (by default) be able to save a password because of a setting change. Don't forget that this is a reliable security precaution - as mentioned, you don't want to override this setting on a computer you're not familiar with or that is in a public location.
That bookmarklet that forces Firefox to turn the "autocomplete" setting back on for specific web pages is executed via Javascript, so your browser must support Javascript for this to work. For the technically minded, or those that are simply curious, here's the code used to make the Javascript bookmarklet:
javascript:(
function() {
var ca,cea,cs,df,dfe,i,j,x,y;
function n(i,what) {
return i+" "+what+((i==1)?"":"s")
}
ca=cea=cs=0;
df=document.forms;
for(i=0;i<df.length;++i) {
x=df[i];
dfe=x.elements;
if(x.onsubmit) {
x.onsubmit="";
++cs;
}
if(x.attributes["autocomplete"]) {
x.attributes["autocomplete"].value="on";
++ca;
}
for(j=0;j<dfe.length;++j) {
y=dfe[j];
if(y.attributes["autocomplete"]) {
y.attributes["autocomplete"].value="on";++cea;
}
}
}
alert("Removed autocomplete=off from "+n(ca,"form")+" and from "+n(cea,"form element")+", and removed onsubmit from "+n(cs,"form")+". After you type your password and submit the form, the browser will offer to remember your password.")
}
)();
Bookmarklets are essentially snippets of Javascript code. Just like when you create a bookmark to a page, a URL is stored, and upon recall executed (so your browser is taken to that URL), with a bookmarklet, the URL is a snippet of Javascript. If you bookmark the bookmarklet (hence the name), upon recall the Javascript snippet is executed in your browser. So all you really need to do is copy and paste the above code into the URL field of a link, and you have your bookmarklet. Note that we've inserted tabs and spacing for readability - you may need to remove these (ie. consolidate space) to get the Javascript to work correctly.
All Content © 2005 - 2010 Contract Web Development, Inc. All Rights Reserved. Privacy Policy | Terms of Use | Powered by Drupal
Nice script
Nice script. Exactly what I need now. This code I need as well =)