$(function(){$("a.vote_up").click(function(){the_id=$(this).attr('id');$(this).parent().html("<img src='images/spinner.gif'/>");$("span#votes_count"+the_id).fadeOut("fast");$.ajax({type:"POST",data:"id="+$(this).attr("id"),url:"/ilike.php",success:function(msg){$("span#votes_count"+the_id).html(msg);$("span#votes_count"+the_id).fadeIn();$("span#vote_buttons"+the_id).remove()}})})});