Добрый день. Передаю в аякс-обработчик массив arr.
function ajaxpostshow(urlres, datares, wherecontent ){
$.ajax({
type: "POST",
url: urlres,
data: datares,
dataType: "html",
success: function(fillter){
$(wherecontent).html(fillter);
}
});
}
$(function(){
var arr = [];
arr['key'] = 'value';
ajaxpostshow("/include/ajax/basket.php", arr, ".basket" );
return false;
});
});
В массив $_POST ничего не передается. Почему?