Skip to content

Instantly share code, notes, and snippets.

@lscoates
Last active September 9, 2016 18:36
Show Gist options
  • Save lscoates/9afebe0ab9d9fae6822b6bf0c66c7ff6 to your computer and use it in GitHub Desktop.
Save lscoates/9afebe0ab9d9fae6822b6bf0c66c7ff6 to your computer and use it in GitHub Desktop.
//Limits both Billing and Shipping Countries to the US
$(function() {
$('.form__field--country select').find('option').remove();
$('.form__field--country select').append('<option value="US" checked="checked">United States</option>');
$('.form__field--country select').change();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment