Autofill populating wrong fields

FormsAutofill

Forms Problem Overview


I have a site with a checkout page that has always worked beautifully.
Recently, any customer that uses autofill to fill out his info, gets his email address dumped into the company field. There are no changes that we did that could affect that. What other tools can I use to get to the bottom of this?

Forms Solutions


Solution 1 - Forms

The OP's problem may have been solved (or may have come back again in recent updates!) but as of early 2019, you can diagnose some of these problems by setting the show-autofill-type-predictions flag in chrome://flags, restarting Chrome, then looking at the title (tooltip text) for the input in question. It will tell you what information is being used to guess the "type" of field, and what kind of saved data should be used to populate it.

Solution 2 - Forms

We still don't know what caused the issue, but for anyone seeing this we ended up making the field readonly so that auto-fill doesn't fill it. We then wrote some JS that on focus, it becomes active and the user can manually fill it in.

<input type="text" name="company" readonly="" onfocus="this.removeAttribute('readonly');">

Solution 3 - Forms

Found myself in a similar problem, and the autocomplete property is what to be used in this situations

<input type="text" name="fooBar" autocomplete="organization" > 

exhaustive list of autocomplete/autofill tags for html form inputs

Solution 4 - Forms

I encountered a similar problem, having a "company" field placed under a "name" field. That company field was auto-filled with a birth year. It came from another form on the same site that was displaying a "birthdate" field group just below the "name" field. So chrome stored its auto-fill values in that order. I ended up with changing my second form field order (sadly it was the best I could do).

Solution 5 - Forms

You need to add name to the input tag. Browsers use name to identify what info is supposed to go into the field. You can also use the same for ID and for placeholder if you like. Try this:

<input type="text" name="company" id="company" placeholder="company">

If that still does not work, you might consider turning off autofill for that particular field*:

<input type="text" name="company" id="company" placeholder="company" autocomplete="off">

*you can also turn off autofill for the whole form using the same autocomplete property and off value.

Solution 6 - Forms

We recently started having an issue like this with our shopping cart page when it was viewed from chrome and you had a saved user name and password for the site. Chrome would inexplicably put the user name value into the quantity box. After much hair-pulling, we realized that there were a hidden user name and password field on the page. These auto-filled correctly when visible. When hidden chrome would auto-fill the quantity input box. By setting autocomplete="username" and autocomplete="current-password" on these controls the issue went away.

Solution 7 - Forms

The Almost Invisible Input Proxy Trick

I just encountered the same issue with the Chrome 72... It just wanted to fill any kind of field (select or input) as long it was not readonly (with complete no respect for name, autocomplete, etc attributes), with any kind of value it may have stored previously.

  • You may want to avoid the field to be populated because you listen on the change event or there are some validation on input that may trigger error message just because of bad autofill.
  • You just want the autofill value to be discarded and not even show (even before javascript execution).

You just provide another field for the browser to fill and you make it almost impossible to see by hiding it under the other field.

    <input type="text" id="autofill-if-you-dare" style="position: absolute; z-index: -1; top: 20px; width: 0; height:0" />

Note: You can still hide or remove it by javascript afterwards but you should not hide it before autofilling has been completed, because Chrome will populate only visible fields. And as other answers have stated, it doesn't trigger any event, so you must rely on polling to do so.

Solution 8 - Forms

I had the problem that chrome will fill in my email in all fields in one of my forms. The other form works correctly. I found the problem is that the word Name must be before the name input. Or the word email must be before input for email. I had it afterwards. Also using <label for="email">Your email</label> after the email input worked.

**Incorrect autocomplete:**
<input type="text" name="name"/> Your name
<input type="email" name="email"/> Your email

**Correct autocomplete:**
Your name <input type="text" name="name"/>
Your email <input type="email" name="email"/>
or
<label for="name">Your name</label> <input type="text" name="name"/>
<label for="email">Your email</label> <input type="email" name="email"/>
or
<input type="text" name="name"/> <label for="name">Your name</label>
<input type="email" name="email"/> <label for="email">Your email</label>

Solution 9 - Forms

Suppose there are three fields, One with wrong autocomplete.

<input type="text" name="field1"/> 
<input type="password" name="field2"/> 
<input type="text" name="wrongAutocompleteField3"/> 

Now make display of wrongAutocompleteField3 as none:

<style>
.d-none{
   display:none;
}
</style>
....
<input type="text" name="wrongAutocompleteField3" class="d-none"/> 

On page load remove this .d-none class:

<script>
$(function(){
   $('[name="wrongAutocompleteField3"]').removeClass('d-none');
});
</script>

Solution 10 - Forms

I solved this problem by making sure the section I was adding was actually wrapped in a <form> tag. The site's global "search" field was being considered part of the page's form because neither had a <form> tag.

Since you can have inputs outside of forms, and this isn't really a big problem for a single-page-app (maybe not the best practice though!), this might be a worthwhile thing to check.

Solution 11 - Forms

February 2021:
autocomplete="__away" worked for me src.
autocomplete="new-password" also worked src.

Still hacky but it worked for me in Chrome and MS Edge both 88.0.7.

Related(Duplicate?) questions:
Autocomplete Off is completely Ignored
Disabling Chrome Autofill
Autocomplete off vs false?

Solution 12 - Forms

I have been encountering this issue lately, specifically with chrome. It seems that

autocomplete="off"

isnt being picked up anymore by Chrome. I found the following sources helpful :

Chromium (which i believe is what a lot of Chrome is based on) has the following code that shows the regex that is used when finding fields to populate with Chrome's autocomplete:

https://cs.chromium.org/chromium/src/components/autofill/core/common/autofill_regex_constants.cc?sq=package:chromium&g=0&l=262

I feel like they only other work around that I have found is to follow these conventions : https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete

Or at least make sure that you give an attribute that's disimilar enough from the above list so it that wont get picked up by autocomplete features.

Solution 13 - Forms

In Chrome, add this on the top of the page:

<input id="" class="" name="" type="password" style="display: none;">

Solution 14 - Forms

You need to add form tag

<form action="#" method="GET">
    <input type="text" name="text"/>
</form>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHaimView Question on Stackoverflow
Solution 1 - FormsCodererView Answer on Stackoverflow
Solution 2 - FormsHaimView Answer on Stackoverflow
Solution 3 - FormscatalintView Answer on Stackoverflow
Solution 4 - FormsMaxime BrehinView Answer on Stackoverflow
Solution 5 - FormsYosef SahlerView Answer on Stackoverflow
Solution 6 - FormsRobinZView Answer on Stackoverflow
Solution 7 - FormsFabView Answer on Stackoverflow
Solution 8 - FormsJanView Answer on Stackoverflow
Solution 9 - FormssajjadsisakhtiView Answer on Stackoverflow
Solution 10 - FormsK0D4View Answer on Stackoverflow
Solution 11 - FormsMichael SchoberView Answer on Stackoverflow
Solution 12 - FormsAC007View Answer on Stackoverflow
Solution 13 - Formsrahul sureshView Answer on Stackoverflow
Solution 14 - FormsabdurrahimiView Answer on Stackoverflow