Hi, just wonder how do I do this?
I just want a specific data from the table.

For example table.html consist of 3 tables, they all have unique class name.
Am I able to do a script just to look for the specific class name I want, and just loop down to the specific data I want?

Example:
What I am looking for, table with class name "BB", and just want the "earnings" data.

<table class="AA">
...
...
</table>
<table class="BB">
..
..
<tr>Earnings: $200,000</tr>
..
..
</table>


so in this example, I will just able to extract "Earnings: $200,000" data?

Thanks