How to count the number of table rows within an html table using JQuery

H

How Can We Help?

How to count the number of table rows within an html table using JQuery

var countRows = $('#tableID tr').length; 
alert(countRows)

or

var countRows = $('#tableID tr').size;
alert(countRows)

The selector takes all rows and then counts them.

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me