Is there any way to dictate to browsers which fields should use what autocomplete information?
I'm a developer working on an ecommerce web site. I ask as, right now, we have a checkout where users enter their basic info (Name, Email, Phone), followed by a zip/postcode field for an address lookup, followed by a full set of address fields (Company, Address, Address line 2, City, Region, Country, and zip/postcode field).
Now, I know by browser has all of the information in it for country, city, and so on. When I invoke autocomplete, however, the following happens:
- Name, Email, and Phone are filled-in
- The autocomplete postcode field is filled-in with the postcode
- The address line is filled in
- None of the other fields are filled-in
Secondly, I know I have credit card information stored in my browser, but the autocomplete does not pull this through.
Any help would be appreciated. I've searched on Google, but obviously my google-fu is weak as most of the results I find are just user-centric - how to add your address and enable the feature in chrome - not how to engineer a site so that chrome knows where to put the information..