View file xmyx.ru/files/js/feed.js

File size: 462B
function feed_wall_like(id){
    $.ajax({
        url: "/files/wall/php/like_post.php?id="+id,
        cache: false,
        success: function(html)
        {
            $("#feed_wall_like_"+id).html(html);
        }
    });
}
function feed_group_like(id){
    $.ajax({
        url: "/files/groups/php_js/like_post.php?id="+id,
        cache: false,
        success: function(html)
        {
            $("#feed_group_like_"+id).html(html);
        }
    });
}