(function($) {
var postCount = 25; //Сколько постов изначально на странице
$('#showmemore a').live('click', function(e){
e.preventDefault();
postCount += 25; //Прибавляешь посты которые выводятся при нажатии
$(this).addClass('loading').text('LOADING...');
$.ajax({
type: "GET",
url: $(this).attr('href') + '#loop',
data: { post_count : postCount }, //Передаешь количество постов PHP-функции
dataType: "html",
success: function(out){
result = $(out).find('#loop .post');
nextlink = $(out).find('#showmemore a').attr('href');
$('#loop').append(result.fadeIn(300));
$('#showmemore a').html('Show me more');
$(document).trigger('ready');
if (nextlink != undefined) {
$('#showmemore a').attr('href', nextlink);
} else {
$('#showmemore').remove();
}
}
});
});
})(jQuery)