Output
Sample Code
This is a demo for "autocomplete" attribute in fields of Forms.
HTML:
<form><p><label>Account: <input type="text" name="acon" autocomplete="on"></label></p>
will save input history
<p><label>Account: <input type="text" name="acoff" autocomplete="off"></label></p>
will not save input history
<br>
<input type="submit" />
</form>