help selecting the new inserted row
My table inserts dynamic rows after the row that has been clicked. The code
var newRow1 = $('<tr><td> </td><td> </td><td> </td><td> </td></tr>');
$('#table1 .trclick').after(newRow1);
The new row is inserted between existing rows. i want to select this row and insert some text in its column. The problem is that I dont know how to select the new row to perform any operations.