It seems that you want to enable autocomplete , but you specified the wrong attribute.
SYNTAX:
AutoFill = "on | off"
To save your email address for the first time, you must have a form tag with the method="POST" attribute. It is also recommended that you use the autocompletetype attribute autocompletetype that browsers more accurately fill out forms.
NOTE. In some cases, in older browsers, you may also need to add an action if not in its form. action="javascript:void(0)" works.
An example with autocompletion and method="POST" :
<form method="POST" action="javascript:void(0)"> <input type="email" name="email" id="frmEmailA" placeholder="name@example.com" required autocomplete="on" autocompletetype="email"> <input type="submit"> </form>
An example without autocompletion and method="POST" :
<form> <input type="email" name="email" id="frmEmailA" placeholder="name@example.com" required autocomplete="off"> <input type="submit"> </form>
See also How to start autocomplete in Google Chrome?
samdd
source share