Showing 1–12 of 17 resultsSorted by price: low to high
jQuery( function( $ ) { // زمانی که استان تغییر میکند $('#billing_state').change(function() { var selectedState = $('#billing_state').val(); // بررسی میکنیم که آیا استان انتخاب شده تهران است if (selectedState === 'Tehran') { // پنهان کردن فیلد کد پستی و حذف اجباری بودن $('#billing_postcode').closest('p').hide(); $('#billing_postcode').removeAttr('required'); } else { // نمایش فیلد کد پستی و افزودن اجباری بودن $('#billing_postcode').closest('p').show(); $('#billing_postcode').attr('required', 'required'); } }); });