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.
var countRows = $('#tableID tr').length;
alert(countRows)
or
var countRows = $('#tableID tr').size;
alert(countRows)
The selector takes all rows and then counts them.