In this post, Find jQuery code to get Row Index and Column Index of ASP.NET GridView Cell on click or on mouseover event.
Related Post:
To get the row and column index, attach mouseenter event to all tr and td of ASP.NET GridView. And using jQuery closest() find count of all the previous respective element.
Related Post:
- How to access particular cell in gridview using jQuery
- Get ASP.NET GridView Cell Value on Click using jQuery
- How to loop through all grid view rows using jQuery
To get the row and column index, attach mouseenter event to all tr and td of ASP.NET GridView. And using jQuery closest() find count of all the previous respective element.
$(document).ready(function () { $("#gdRows tr td").mouseenter(function () { var iColIndex= $(this).closest("tr td").prevAll("tr td").length; var iRowIndex = $(this).closest("tr").prevAll("tr").length; }); });Keep in mind that both index starts from 0.
See Complete Code
Feel free to contact me for any help related to jQuery, I will gladly help you.