How to count the number of table rows within an html table using JQuery?
|
|
|
|
|
Question: How to count the number of table rows within an html table using JQuery? Answer: var countRows = $('#tableID tr').length;
alert(countRows) or var countRows = $('#tableID tr').size;
alert(countRows) Â The selector takes all rows and then counts them.
|