jQuery(document).ready(function($) { $("#ajaxform").on('submit', function(e){ var postData = $(this).serializeArray(); var postDataCustom = {} postDataCustom.min_price = Number(postData[0].value); postDataCustom.max_price = Number(postData[1].value); postDataCustom.imp_category_slug = postData[2].value; postDataCustom.action = 'test_response'; data = postDataCustom; console.log(data); $.ajax({ url: the_ajax_script.ajaxurl, type: "GET", data, success: function(response) { $(".catalogue").html(response); } }); // disable form action return false; }); });