I have a website page with a simple form with 5 email fields. When I begin to fill the first field, chrome proposes me to fill EVERY fields with the same email address. I don’t want to disable the chrome autofill feature completely (I know it is possible by adding the attribute autocomplete="off").
Is it possible to let the autofill feature work just for each field individually?
Here’s the form code:
<form action="#emails" method="POST" name="sponsorship_form_email" id="sponsorship_form_email" >
<p>
<label>Email 1 : </label><input type="email" class="inputtext" name="email[]" id="1" />
</p>
<p>
<label>Email 2 : </label><input type="email" class="inputtext" name="email[]" id="2" />
</p>
<p>
<label>Email 3 : </label><input type="email" class="inputtext" name="email[]" id="3" />
</p>
<p>
<label>Email 4 : </label><input type="email" class="inputtext" name="email[]" id="4" />
</p>
<p>
<label>Email 5 : </label><input type="email" class="inputtext" name="email[]" id="5" />
</p>
<p>
<input value="Invite" id="send" type="submit" />
</p>
</form>
give your inputs different names 😉