que no sirven los id dinámicos!!! jeje deberias practicar un poco con estos métodos
http://api.jquery.com/category/traversing/ y ver que hacen
si tenes un boton para borrar en cada fila entonce cuando hacen click subis hasta ese tr y lo borras
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, select', newTr).val('');
$('#laTabla').append(newTr);
return false;
});
$('.eliminar').live('click', function(){
$(this).closest('tr').remove();
});
});
<td><input type="text" name="nombre[]" /></td> <input id="agregar" type="button" value="+" />
y esto
$('select', newTr).eq(0).val('');
$('select', newTr).eq(1).val('');
$('select', newTr).eq(2).val('');
es lo mismo que esto
$('select', newTr).val('');
y todo junto
$('input', newTr).eq(0).val('');
$('input', newTr).eq(1).val('');
$('select', newTr).eq(0).val('');
$('select', newTr).eq(1).val('');
$('select', newTr).eq(2).val('');
es lo mismo esto
$('select, input', newTr).val('');