jQuery(document).ready(function($){

    $('#apply-property-filters').on('click', function(e){
        e.preventDefault();

        var city      = $('#filter-city').val();
        var price     = $('#filter-price').val();
        var bedrooms  = $('#filter-bedrooms').val();

        $('#property-results').html('<p>Loading properties...</p>');

        $.ajax({
            url: property_ajax.ajax_url,
            type: 'POST',
            data: {
                action: 'filter_properties',
                nonce: property_ajax.nonce,
                city: city,
                price: price,
                bedrooms: bedrooms
            },
            success: function(response) {
                $('#property-results').html(response);
            }
        });
    });

});