Skip to content

Instantly share code, notes, and snippets.

@MichaelCPell
Last active August 29, 2015 14:20
Show Gist options
  • Save MichaelCPell/a35f43151e883e00cfed to your computer and use it in GitHub Desktop.
Save MichaelCPell/a35f43151e883e00cfed to your computer and use it in GitHub Desktop.
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
$.each($(".google-place"), function(index, value) {
var autocomplete = new google.maps.places.Autocomplete(value);
google.maps.event.addListener(autocomplete, 'place_changed', function() {
var place = autocomplete.getPlace();
window.foo = place
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment