I am using Google Maps Javascript v3 to setup autocomplete on an HTML input field like so:
http://imgur.com/Rm6X2FI.png - (w/out autofill)
The issue I\'m having
I tried the sample from Google's Address Finder, and got the same problem:
With the new version of chrome, all you need is to add: autocomplete="off"
to your input:
This is the automcomplete input, which has the event: onFocus="geolocate()"
:
I added this line to geolocate, to hide the autocomplete:
function geolocate() {
// add this line to hide the autocomplete
$("#autocomplete").attr("autocomplete", "new-password");
// other stuff
}