run each function except first 3 element - jquery code example
Example: jquery each tr except first
$('#files-table> tbody > tr').not(':first').each(function(){
console.log($(this).html())
})
$('#files-table> tbody > tr').not(':first').each(function(){
console.log($(this).html())
})