<span class="pc-cc-cb-rating">
<span class="pc-cc-cb-greenCounter">+<span><?=$row["Like"]?></span></span>
<a href="javascript:rateComment(<?=$row["ID"]?>,1);" class="pc-cc-cb-like"></a>
<span class="pc-cc-cb-redCounter">−<span><?=$row["Dislike"]?></span></span>
<a href="javascript:rateComment(<?=$row["ID"]?>,0);" class="pc-cc-cb-dislike"></a>
</span>
function rateComment(ID, type) // ид коммента, тип (минусовать или плюсовать)
{
$.ajax(
{
url: "/php/controller.php?m=rateComment",
type: 'post',
data: {type: type, ID: ID, SKU: "<?=$_GET["sku"]?>"}, //sku - ид товара/статьи/новости/трололо, где находится блок с сообщениями.
dataType: 'json',
success: function(result)
{
if(result.status === 0)
{
var element = type === 1 ? $("#pc-cc-id" + ID).find('span.pc-cc-cb-greenCounter span') : $("#pc-cc-id" + ID).find('span.pc-cc-cb-redCounter span');
element.text(parseInt(element.text())+1);
}
}
});
};