Leo Suter

Leo Suter

მონაწილეობას იღებს

jQuery(document).ready(function($) { $(document).on('click', '.like-actor', function(e) { e.preventDefault(); var button = $(this); var term_id = button.data('id'); var likeType = button.data('like'); var countSpan = button.find('span'); $.ajax({ url: trlive.url, type: 'POST', data: { action: 'toroflix_actor_vote', nonce: trlive.nonce, id: term_id, like: likeType }, success: function(response) { if (response.success) { countSpan.text(response.data.votes); button.addClass('voted'); } else { console.log('Error:', response); } }, error: function(xhr, status, error) { console.log('AJAX Error:', error); } }); }); }); iv>