I have something like this...
$().ready(function () {
    $(".post .comment_this").click(function () {
        var comment_id = $(this).attr('rel');
        $.post(url_base + 'bio/community/get_comments', { 'comment_id' : comment_id }, function (response) {
            console.log(comment_id);
        });
    });
});
How to pass comment_id into that function? So I can use it there...
 
     
     
     
    