jQuery fetch last row






4.67/5 (5 votes)
Fetch first column in last row of html Table
Scenerio: Accessing first td in last row of html table. Also you have to check the content(here need to search 'td1' text) in first td.
Solution:
1. Add Link to Latest jQuery 2. Html Table
3. JQuery Script for accessing last row in above table
Firt td containing 'td0', if it contains 'td0' alert message is appeared.
1. Add Link to Latest jQuery 2. Html Table
Row1 td0 | Row1 td1 |
Row2 td1 | Row2 td1 |
In Above script,
$("#Mytable").find("tr:last td:eq(0)").text().indexOf('td1')
Above line searchs text 'td1' in first column of last row in html table with id='Mytable'.