You are here: irt.org | FAQ | JavaScript | Form | Q1638 [ previous next ]
Simply include an autocomplete attribute as follows:
<form name="myForm"> <input type="password" name="myField" autocomplete="off"> </form>
You may also be able to programmatically change this using the following:
<script language="JavaScript"><!-- document.myForm.myField.setAttribute('autocomplete','on') //--></script>