Is it possible to query all objects that are in the "hidden area" of a parent element that has a overflow:scroll
?
There is a parent <div>
container with style="overflow:scroll;height:200px"
. This container contains a table. See the sample code:
<div id="scrollContainer" style="overflow:hidden;height:200px">
<table>
<tr>
<td>...</td>
<tr>
<tr>
<td>...</td>
<tr>
...
...
</table>
</div>
How can I get a list of all <tr>
that are out of view?