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

Q1492 How can you disable Internet Explorer 5's Internet Options/Content/Autocomplete/Clear Forms or Clear Passwords tab using JavaScript?

You are here: irt.org | FAQ | JavaScript | Form | Q1492 [ previous next ]

Include autocomplete="off" on your input tags:

<form>
Name <input name="name" autocomplete="off"><br>
Email <input name="email" autocomplete="off"><br>
Comments <textarea rows="10" cols="60" wrap="virtual" autocomplete="off"></textarea><br>
<input type="submit" value="Submit"><br>
<input type="reset" value="Wipe">
</form>

Submitted by 1ampr0ud

©2018 Martin Webb