المفضلة
Visit Site
View Profile
Sign Out
المفضلة
You don't have any property listed.
jQuery(document).ready(function ($) { $(document).on('click', '.houzez-change-status', function (e) { e.preventDefault(); var el = $(this); $.ajax({ url: houzez_ajax.ajaxURL, type: 'POST', data: { action: 'houzez_change_property_status', prop_id: el.data('propid'), status: el.data('status'), nonce: el.data('nonce') }, beforeSend: function () { el.addClass('loading'); }, success: function (response) { if (response.success) { location.reload(); } else { alert(response.data); } } }); }); });