I have a remove link that will remove the current comment on my page. It uses ajax to change the database and upon success, I want to remove the div the comment resides in.
If you're trying to remove it on a click:
$(".aComment a").on('click', function(){ $(this).closest(".aComment").remove(); });
http://jsfiddle.net/gaQuu/