Answers for "how to find 2nd td value in table jquery"

0

jquery get second td of tr

$(this).closest('tr').find('td:nth-child(2)').text()
Posted by: Guest on November-20-2020
6

select 2nd td jquery

$(".location table tbody tr td:first-child").addClass("black");
$(".location table tbody tr td:nth-child(2)").addClass("black");
Posted by: Guest on April-15-2020

Code answers related to "how to find 2nd td value in table jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language