jQuery, get table cell at specific index
- by Jarek Waliszko
Hello,
I know that I can get first or last table cell (ex for last row) using jquery expression like below:
first cell: $('#table tr:last td:first') or last cell: $('#table tr:last td:last')
Can I get cell at specific index, for example index 2, using similliar expression:
ex: $('#table tr:last td:[2]')...
Regards.