Skip to content

Instantly share code, notes, and snippets.

@codinet17
codinet17 / gist:bc73d2c700c0eee9f8585f139c2b4e54
Last active February 14, 2018 20:48
Shopify Auto complete address checkout
// Codi-net.com
if (window.location.href.indexOf('checkout') > -1) {
window.onload = function() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = "https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places";
script.async = "true";
script.defer = "defer";
document.body.appendChild(script);