I have a working autocomplete Places API. It shows the suggested places but these options are not clickable or do not do anything when clicked.
I've tried changing the z-index and trying it on a different page to see if there are any plugins that conflict, but there are none.
<input type="text" id="address" style="width: 500px;"></input>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCuVftmpzV-RSZA7-td6gaCpYwMmDc9CPo&libraries=places&v=weekly"></script>
<script>
var autocomplete = new google.maps.places.Autocomplete($("#address")[0], {});
google.maps.event.addListener(autocomplete, 'place_changed', function() {
var place = autocomplete.getPlace();
console.log(place.address_components);
});
</script>