Quick Note. Unlike Firefox, Internet Explorer handles password fields a little differently, blanking out whatever value you pass it within a 'value' tag.
So...
Will have a password box in Firefox starred out, but in IE it'll appear blank.
To get around this you can use Prototype to inject a value into the password field, so the user see's it as starred out.
Note, if you're generating the form dynamically with...
Only fire your $('mypass') code after the form has been written to the page otherwise you won't be able to get a handle on it (most cases you won't ever have this problem).






