if(whatPathname) {
jQuery.ajax({
type:'POST',
url:'index.php?option=com_ajax&module=filter_materials&method=getTwitter&format=json',
data:'pathname=' + whatPathname,//параметры запроса
success:function (data) {//возвращаемый результат от сервера
jQuery.each(JSON.parse(data), function(index, item) {
jQuery.each(item, function(key, value) {
alert('no');
})
})
}
});
alert(jQuery('.allCat p').text());