Hola
rezocrew
Prueba este ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function borrar(obj) {
fila = obj.parentNode.parentNode;
document.getElementById('tabla').removeChild(fila);
}
</script>
</head>
<body>
<table>
<tbody id="tabla">
<tr>
<td>fila 1</td><td><input type="button" onclick="borrar(this)" />
</tr>
<tr>
<td>fila 2</td><td><input type="button" onclick="borrar(this)" />
</tr>
<tr>
<td>fila 3</td><td><input type="button" onclick="borrar(this)" />
</tr>
</tbody>
</table>
</body>
</html>
Saludos,