$(".button").click(function() { var comment = $(this).closest(".message").find(".comment"); $.get("?ajaxcomment=" + comment.val(), function( data ) { comment.val( data ); }); return false; });