Answer the question
In order to leave comments, you need to log in
Why does ajax pass parameters using the GET method?
$('#filterForm').submit(function(){
$.ajax({
type: "POST",
url: "http://dada.ru/catalog/index/9",
dataType: "json",
data: {
'filtersCheck[]': filtersCheck.join()
},
success: function(html){
$("#catalog").innerHTML= '';
$("#catalog").html(html);
}
});
return false;
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question