How can I get all tbody > tr that doesn't have this style attribute: display: none?
tbody > tr
display: none
$("tbody > tr:visible")
Should do it, by using the :visible selector.
:visible