I have two variable having value of searializeArry like this -:
var Data = $("#searchValue").serializeArray();
var Data_filter =$("#filter_head_area_form").serializeArray();
I want to send both the array value in Var Data . So that my ajax call will be like this
            $.ajax({
                url: 'something.com',        
                type:"post",
                data : Data, 
 
     
     
    