Просто используйте jQuery и скройте родителя.
$('td.hide_on_click').live('click', function(){
// PICK ONE OF THESE:
$(this).parent('tr').remove(); //completely destroy the tr (remove from DOM)
$(this).parent('tr').hide(); //just hide it from the user
});
Удалить тег. Если вы хотите, чтобы он имел «внешний вид ссылки», добавьте стиль CSS для чего-то кликабельного:
.clickable {
cursor: pointer;
cursor: hand;
}
тогда:
<table>
<tr>
<td></td>
<td></td>
<td class="hide_on_click clickable">delete</td>
</tr>
</table>