Files
longnguyen cf7bf361c1 Improve order checkout page #17 (#43)
Issue #17 - Arrange the address fields to the Vietnam standard: Country - Province - District - Address
2018-04-16 21:59:23 +07:00

14 lines
395 B
JavaScript

(function($) {
$('#billing_country_field').on('change', function() {
// Get country code
var country_code = $(this).find('#billing_country').val();
// Match country code with Vietnam
if(country_code == 'VN') {
$('.woocommerce-billing-fields__field-wrapper').addClass('active');
} else {
$('.woocommerce-billing-fields__field-wrapper').removeClass('active');
}
})
})(jQuery)