Is it feasible to fetch all elements located within the "hidden area" of a parent element that has an overflow:scroll
property?
A parent container, <div>
, has a style of overflow:scroll;height:200px
. Within this container is a table. Take a look at the example code below:
<div id="scrollContainer" style="overflow:hidden;height:200px">
<table>
<tr>
<td>...</td>
<tr>
<tr>
<td>...</td>
<tr>
...
...
</table>
</div>
What is the best approach to compile a list of all <tr>
elements that are not visible on the screen?