How can I use the following code to change the ids from the second tr or omit the first tr, since the table has an initial tr that shows the names of the columns which do not handle data.
parent.children("tbody").children("tr").each(function(e){
$(this).attr('id', (e));
});
Any help is welcome.