I\'m an intermediate user in jQuery. I know to find the rowIndex of a table using jQUery, but my scenario is a different one. My table(GridView) consists of 20 columns and e
Should be able to just use:
var rowIndex = $(this).parents("tr:first")[0].rowIndex;