$(document).ready(function() { $('.resend').click(function(e) { // Button which will activate our modal var the_id = $(this).attr('id'); //get the id // show the spinner $(this).html(""); $.ajax({ //the main ajax request type: "POST", data: "action=email_verify&id="+$(this).attr("id"), url: ajaxurl, success: function(data) { var tpl = ''+data+''; $("span#resend_count"+the_id).html(tpl); //fadein the vote count $("span#resend_count"+the_id).fadeIn(); //remove the spinner $("a.resend_buttons"+the_id).remove(); } }); return false; }); });
city