Advertisement
Guest User

Untitled

a guest
Mar 10th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.76 KB | None | 0 0
  1. jQuery(document).ready(function($){$(".vote-button").live("click",function(){post_id=jQuery(this).attr("data-post_id");nonce=jQuery(this).attr("data-nonce");user_ip=jQuery("meta[name=ip]").attr("content");var itemName=user_ip+post_id;$.ajax({type:"post",dataType:"json",url:lvc_voting_ajax.ajaxurl,data:{action:'lvc_voting_request',post_id:post_id,user_ip:user_ip,nonce:nonce,},success:function(response){if(response.type=="success"){$('button[data-post_id="'+post_id+'"] > span.vote-count').html(response.vote_count);$('button[data-post_id="'+post_id+'"]').addClass('custom-already-voted');}else if(response.type=="no-vote"){$('span.already-voted').fadeIn(500).delay(2000).fadeOut(500);}else{$('span.already-voted').html(response.vote_count).delay(2000).fadeOut(500)}}});});});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement