For a page with html like this structure:
<tr class="">
<td class="number">1</td>
<td class="name"><a href="..." >Jack Green</a></td>
<td class="score-cell ">
<span class="display">98
<span class="tooltip column1"></span>
</span>
</td>
<td class="score-cell ">
...
</td>
...
<tr class="">
<td class="number">2</td>
<td class="name"><a href="..." target="_top">Nicole Smith</a></td>
<td class="score-cell ">
...
</td>
How do I ONLY extract the text from the name tag to end up with a list {Jack Green, Nicole Smith}? Some method elegant I hope.