var id_user = $('#id_user').val();
var id_news = element.parent().find('#id_news').val();
$.ajax({
// метод отправки
type: "POST",
Я так понимаю ругается на то что нет никаких данных в var id_news. Хотя вроде как всё уходит. Помогите решить. Заранее спасибо! Вот html
<div id="votes">
Rating: <b><?=($last['count_votes'] == 0) ? "Нет оценок" : $last['rating'] . " Голосов: " . $last['count_votes']; ?></b>
<br/>
<span <?=($last['rating']>=1) ? 'class="current_vote" current="1"' : 'current="0"';?> id="num_vote" num_vote="1" ></span>
<span <?=($last['rating']>=2) ? 'class="current_vote" current="1"' : 'current="0"';?> id="num_vote" num_vote="2" ></span>
<span <?=($last['rating']>=3) ? 'class="current_vote" current="1"' : 'current="0"';?> id="num_vote" num_vote="3" ></span>
<span <?=($last['rating']>=4) ? 'class="current_vote" current="1"' : 'current="0"';?> id="num_vote" num_vote="4" ></span>
<span <?=($last['rating']>=5) ? 'class="current_vote" current="1"' : 'current="0"';?> id="num_vote" num_vote="5" ></span>
<input type="hidden" id="id_news" value="<?=$last['id'];?>" />
<input type="hidden" id="count_votes" value="<?=$last['count_votes'];?>" />
<input type="hidden" id="rating" value="<?=$last['rating'];?>" />
</div>