Is there a way to select an element following another one?
For example if I have :
<table>
<tr>
<th></th>
<td></td>
</tr>
<tr>
...
</tr>
</table>
and I want to select the first th I can do :
Elements select = Jsoup.parse(HTML_PAGE).select("th");
Element element = select.get(0);
But how can I do to say : select the td that follow the first th?
Thank you for your help.