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