Just use just jQuery and hide the parent.
$('td.hide_on_click').live('click', function(){
Remove the tag. If you want it to have a “link appearance”, add a css style for something that you can click:
.clickable { cursor: pointer; cursor: hand; }
then
<table> <tr> <td></td> <td></td> <td class="hide_on_click clickable">delete</td> </tr> </table>
sethvargo
source share