最初を除くすべての行のHTMLを取得したいテーブルがあります。
<table id="files-table">
<tbody>
<tr>
<th class="text-left">Name</th>
<th>Type</th>
<th class="delete-th">Delete</th>
</tr>
<tr>
<td class="text-left"><label class="label-none">a.docx</label></td>
<td><label class="label-none">Manuscript</label></td>
<td><input type="checkbox" class="del-cb"></td>
</tr>
<tr>
<td class="text-left"><label class="label-none">test2.doc</label></td>
<td><label class="label-none">Manuscript</label></td>
<td><input type="checkbox" class="del-cb"></td>
</tr>
</tbody>
</table>
使うとき
$('#files-table> tbody > tr').not(':first').html()
2行目のHTMLしか取得できませんが、3行目のHTMLはどこにありますか?