Showing 61–72 of 80 resultsSorted by latest
مرتب سازی بر اساس
75,000 تومان
انتخاب گزینهها
This product has multiple variants. The options may be chosen on the product page
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'); } }); });