jquerytablesorterquick-search

[quicksearch] How to determine number of displayed rows?


I'm using jQuery with TableSorter and QuickSearch plugins. These work fine.

How can I:

  1. dynamically display row numbers for each displayed row?

  2. somewhere on my page, display the total number of displayed rows?


Solution

  •  $('tr:visible').length
    

    Will you give the number of visible rows on the page.

    Something along the lines of:

     var rowCount = $('tr:visible').length;
     $('#rowCountDiv').html(rowCount + "rows");
    

    Will write out the number into a div on your page with an id of rowCountDiv