Answers for "jquery get table second row"

0

jquery get second td of tr

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

jquery select the 3rd row of a table

$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable
Posted by: Guest on March-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language