You are in the AJAX function, so your have to assign the $(this) of the click function to a variable first if you want to use $(this) there
$('.commentDeleteLink').live('click', function(event) {
....
var current = $(this);
$.ajax({
// You can use current here
});
});