Firefox: Remember All Passwords

From cybernetnews… you can make it so websites can’t override the password saving feature in Firefox. Edit the file nsLoginManager.js, and modify line 770 to return false all the time.

Javascript on Multiple Monitor Systems

I have a preference to keep my browser windows a certain width (1024 pixels for various reasons), flush against the right side of my monitor display, and taking the full height of the screen.  To do this, I have the following javascript on my start page: resizeTo( 1024, screen.availHeight ); moveTo( (screen.availWidth – 1024), 0… Continue reading Javascript on Multiple Monitor Systems

Published
Categorized as Uncategorized Tagged

JavaScript Cookbook

No, not the O’Reily book, this is a good website that has a lot of JavaScript code, in case you find yourself in need… http://www.java2s.com/Code/JavaScript/CatalogJavaScript.htm As you might imagine, there are examples for more things in the entire website… http://java2s.com/

Published
Categorized as Uncategorized Tagged

Client Side Collapse/Expand

Want to do it directly with javascript? Here’s an example, including changing a collapse/expand button, that I snagged from somewhere…

Published
Categorized as Uncategorized Tagged

Block Enter Key Submit

Sometimes you want a form to submit when the enter key is pressed, most times you don’t… here’s the code to block it from happening…

Published
Categorized as Uncategorized Tagged