td:second in jquery code example
Example 1: jquery get second td of tr
$(this).closest('tr').find('td:nth-child(2)').text()
Example 2: select 2nd td jquery
$(".location table tbody tr td:first-child").addClass("black");
$(".location table tbody tr td:nth-child(2)").addClass("black");