jQuery(document).ready(function($) { $('#sorting-dropdown').on('change', function() { var selectedValue = $(this).val(); $.ajax({ url: ajax_object.ajax_url, type: 'POST', data: { action: 'filter_sort', // Custom action hook sort_by: selectedValue }, success: function(response) { $('#listing-grid').html(response); } }); }); });