Delivery charges vary based on location and vehicle type (Bike or Car).
Delivery charges vary based on location and vehicle type (Bike or Car).
jQuery(function($){function toggleReceiverFields() { var giftVal = $('#billing_send_as_gift').val();if(giftVal === 'Yes'){ $('#biling_receiver_name_field').show(); $('#biling_receiver_number_field').show(); $('#biling_receiver_address_field').show(); } else { $('#biling_receiver_name_field').hide();           $('#biling_receiver_number_field').hide(); $('#biling_receiver_address_field').hide(); } }// On load toggleReceiverFields();// On change $('#biling_send_as_gift').on('change', function(){ toggleReceiverFields(); });});