Hola
Mirovita
Prueba este ejemplo, a ver si te sirve:
Código PHP:
<html>
<head>
<script type="text/javascript">
function anadir() {
tab = document.getElementById('tabla');
fil = document.getElementsByTagName('tr')[0].cloneNode(true);
tab.appendChild(fil);
}
</script>
</head>
<body>
<table id="tabla">
<tr>
<td>Uno</td><td>Dos</td>
</tr>
</table>
<input type="button" value="Añadir" onclick="anadir()" />
</body>
</html>
Saludos,