HTML Tip: How to Disable Autocomplete on Forms
Sometimes you don't want the browser to suggest previous inputs. Use the autocomplete attribute.
Sometimes you don't want the browser to suggest previous inputs. Use the autocomplete attribute.
<form autocomplete="off">
<input type="text" name="user">
</form>
This is useful for banking apps or custom search bars.
Join the conversation