Hi,
I have this simple html markup generated from classic asp:
<table>
<tr class="trClass">
<td>Hello </td>
</tr>
<tr class ="trClass">
<td>World!</td>
</tr>
</table>
If i set the tr belonging to Hello to hide() using Jquery it hides. Good!
But, when i use this $('.trClass:visible').each(function() { alert('visible') }); it shows the output 'visible' twice.
Why is this?
My problem here is that im filtering a table on a column with a selection box. But after filtering i need to perform some calculations on those rows that are visible in the table, but i get all rows right now.
Any ideas?
/Daniel