clona solo el tr y agregalo a la tabla, no hace falta id dinámicos
Código HTML:
Ver original <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script type="text/javascript"> $( function (){
$('#agregar').click( function(){
newTr = $('tr:first').clone();
$('input', newTr).val('');
$('#laTabla').append(newTr);
return false;
});
});
<td><input type="text" name="nombre[]" /></td> <input id="agregar" type="button" value="+" />
con ese ejemplo podés agregar los td con imput que quieras y tiene que funcionar