jquery selector to count the number of visible table rows?

Posted by sprugman on Stack Overflow See other posts from Stack Overflow or by sprugman
Published on 2010-05-28T19:22:33Z Indexed on 2010/05/29 15:52 UTC
Read the original article Hit count: 517

Filed under:
|

I've got this html:

<table>
    <tr style="display:table-row"><td>blah</td></tr>
    <tr style="display:none"><td>blah</td></tr>
    <tr style="display:none"><td>blah</td></tr>
    <tr style="display:table-row"><td>blah</td></tr>
    <tr style="display:table-row"><td>blah</td></tr>
</table>

I need to count the number of rows that don't have display:none. How can I do that?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-selectors