Created
September 15, 2015 23:31
-
-
Save nrackleff/3d8524fbd10e869a35f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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