I have a a table with a couple of hidden rows. What I want to achieve is having it show a hidden row with each button click, is this possible?
I count the number of table rows using the following
var rowCount = parseInt($('#Table tr').length);
How do I count hidden table rows?
Try
$('#Table tr:hidden').length
:hidden selector
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With