This is driving me nuts...I am trying to iterate through rows in a table. I know the classname for the tbody. Can I just specify the class for the tbody and iterate through the rows? For example...
<div class="dclass1" ...>
<table summary="" style="margin-top: 0pt;">
<thead ...>
<tbody class="tbClass1" ..>
...
<tbody class="tbClass2" ..>
<tr ..>
...
<tr ...>
</tbody>
...
How do I loop through (or just specify the selector) for the rows in class="tbClass2"?