CleanCheckout
CleanCheckout copied to clipboard
Google Address Suggest flows below autocomplete dropdown
You can't use the Google Address Suggest option in combination with the browser autocomplete function. The browser autocomplete function overlaps the Google Address Suggest dropdown.
See for example: http://cloud.h-o.nl/92a13b
fillAddressFields: function () { var place = this.getPlace(); if (typeof place === 'undefined') { return; } this.c.fillStreetFields(this.e, place); this.c.fillOtherFields(this.e, place); },
seems a good idea to have something to disable the native autocomplete form in js directly :
$(this.e).attr('autocomplete', 'off');
@mageho I looks like there are some problems with this concerning browser support: https://stackoverflow.com/questions/29931712/chrome-autofill-covers-autocomplete-for-google-maps-api-v3