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 had the same issue and solved it using the below jquery function
$( document ).ready(function() { if($('#address').length > 0){ $('#address').on('focus',function() { $(this).attr('autocomplete', 'nope'); }); } });