iAlex
Junior Member
Posts: 73
|
Post by iAlex on Dec 19, 2007 19:32:42 GMT -5
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.
Open Source.
<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>
|
|