Skip to content

Instantly share code, notes, and snippets.

@nrackleff
Created September 15, 2015 23:31
Show Gist options
  • Save nrackleff/3d8524fbd10e869a35f9 to your computer and use it in GitHub Desktop.
Save nrackleff/3d8524fbd10e869a35f9 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
// Default to US on page load
if ($("#edit-line-item-fields-field-delivery-options-und").val() != 'Hold Dedication for pickup at TreePeople office') {
$("select.country.form-control.form-select").val('US').change();
}
else {
$("#edit-line-item-fields-field-recipient-address").hide();
}
$("#edit-line-item-fields-field-delivery-options-und").change(function(){
if ($(this).val() == 'Hold Dedication for pickup at TreePeople office') {
$("#edit-line-item-fields-field-recipient-address").hide();
$("select.country.form-control.form-select").val('').change();
}
else {
$("select.country.form-control.form-select").val('US').change();
$("#edit-line-item-fields-field-recipient-address").show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment