メソッドを使用しようとしていますが、live
最初は意図したとおりに機能しますが、その後の関数の実行で ajax の「成功」コールバックが正しく機能しません。
$(function () {
$('.vote').live('click', function () {
url = '".base_url()."post/vote';
post_id = $(this).attr('id');
$.ajax({
url: url,
type: 'POST',
data: 'post_id=' + post_id,
success: function (msg) {
post = $('.num_vote' + post_id);
vote = $('.votes' + post_id);
$(vote).html(msg); // working only the first time
}
});
return false;
});
});