65.9K
CodeProject is changing. Read more.
Home

jQuery fetch last row

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.67/5 (5 votes)

Aug 18, 2010

CPOL
viewsIcon

27433

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
Row1 td0Row1 td1
Row2 td1Row2 td1
3. JQuery Script for accessing last row in above table Firt td containing 'td0', if it contains 'td0' alert message is appeared. 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'.