Remove Auto Complete On Your Form Or Form Field

Posted By Weston Ganger

To remove the autocomplete dropdown that you get when using a form or an input field

To remove it from an entire form:


<form autocomplete="off">
  <input type="text" name="first-field">
</form>

To remove it from a specific field only:


<form>
  <input type="text" name="first-field" autocomplete="off">
</form>

Article Topic:Software Development - HTML / CSS

Date:July 06, 2014