$(function(){ console.log("Init:",{ region:'USD', localization: $('#shopify_country_form').find('input[name="country_code"]').val() }) let form = document.getElementById('shopify_country_form') let country_code_input = form.querySelector('input[name="country_code"]') if( country_code_input && country_code_input.value.toLowerCase() !== 'us' ){ country_code_input.value = 'US' form.submit(); } })