Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1638 How can I disable the Internet Explorer auto complete form field feature?

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>

Feedback on 'Q1638 How can I disable the Internet Explorer auto complete form field feature?'

©2018 Martin Webb