Skip to content

Instantly share code, notes, and snippets.

@kfrancis
Created May 31, 2013 14:41
Show Gist options
  • Save kfrancis/5685450 to your computer and use it in GitHub Desktop.
Save kfrancis/5685450 to your computer and use it in GitHub Desktop.
Chargify: Set a default country for your hosted page
var obj = $("#subscription_payment_profile_attributes_billing_country");
if (obj !== null) {
obj.val('AU');
if (typeof(setRelatedCountry) === 'function') { setRelatedCountry('AU', obj.attr('rel'), ""); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment