Untitled
unknown
plain_text
2 years ago
2.1 kB
9
Indexable
<script type="text/javascript">
jQuery(document).ready(function() {
if(jQuery('#shipping_method_0_local_pickup6').is(':checked')) {
jQuery("#billing_address_1").val("самовывоз").parent().parent().hide();
jQuery("#billing_city").val("Санкт-Петербург").parent().parent().hide();
jQuery("#billing_state").val("Санкт-Петербург").parent().parent().hide();
jQuery("#billing_postcode").val("190000").parent().parent().hide();
jQuery("#billing_country_field").hide();
jQuery("#billing_state_field").hide();
} else {
if (jQuery("#billing_address_1").val() == "самовывоз") {jQuery("#billing_address_1").val("")};
jQuery("#billing_address_1").parent().parent().show();
jQuery("#billing_city").parent().parent().show();
jQuery("#billing_state").parent().parent().show();
jQuery("#billing_postcode").parent().parent().show();
jQuery("#billing_country_field").show();
jQuery("#billing_state_field").show();
}
});
jQuery('#order_review').click(function() {
if(jQuery('#shipping_method_0_local_pickup6').is(':checked')) {
jQuery("#billing_address_1").val("самовывоз").parent().parent().hide();
jQuery("#billing_city").val("Санкт-Петербург").parent().parent().hide();
jQuery("#billing_state").val("Санкт-Петербург").parent().parent().hide();
jQuery("#billing_postcode").val("190000").parent().parent().hide();
jQuery("#billing_country_field").hide();
jQuery("#billing_state_field").hide();
} else {
if (jQuery("#billing_address_1").val() == "самовывоз") {jQuery("#billing_address_1").val("")};
jQuery("#billing_address_1").parent().parent().show();
jQuery("#billing_city").parent().parent().show();
jQuery("#billing_state").parent().parent().show();
jQuery("#billing_postcode").parent().parent().show();
jQuery("#billing_country_field").show();
jQuery("#billing_state_field").show();
}
});
</script>Editor is loading...
Leave a Comment