ialex
New Member
Posts: 10
inherit
143112
0
May 29, 2010 13:09:41 GMT -8
ialex
10
July 2009
ialex
|
Post by ialex on Sept 7, 2007 16:01:12 GMT -8
For those with Firefox, you may have noticed that when modifying your profile, the browser will automatically input your password into the first field, which can cause some inconvenience.
This code will oppose the automatic input of the password, and set the password field back to blank, meaning that Firefox users will not have to worry about it.
Main Footer.
Firefox.
<script type="text/javascript"> <!--
if(document.addEventListener && document.modifyForm && document.modifyForm.password){ var iPassField=document.modifyForm.password; window.addEventListener('load', function(){ iPassField.value=''; }, false); }
//--> </script>
|
|