Skip to content

Instantly share code, notes, and snippets.

@thisislawatts
Created November 9, 2015 09:22
Show Gist options
  • Save thisislawatts/344812eef924ad582bad to your computer and use it in GitHub Desktop.
Save thisislawatts/344812eef924ad582bad to your computer and use it in GitHub Desktop.
Extract Shopify Shipping Rates as json
jQuery.get('/admin/countries.json', function(res) {
var str = '<script>var AC = window.AC || {};' + "\r";
str += 'AC.shipping = ' + JSON.stringify(res.countries) + '</script>';
document.body.innerHTML = '<code>' + str + '</code>';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment