$(function() { $('.like').click(function(e){ var id = $(this).attr('id').substr(2); $.ajax({ type: "GET", url: '/ajax.php?do=likedlcomment', dataType: 'html', data: ({ id: id }), beforeSend: function(data) { $('.likes'+id).fadeOut("fast"); }, success: function(data) { $('.likes'+id).html(data).fadeIn("fast"); } }); return false; }); });