jquery get tr from td code example
Example 1: get main tr from td jquery
tdToPad.closest('tr')
.addClass('X-' + pad)
Example 2: jquery grab table row
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable