Normally, it's hard to get table height with javascript because javascript cannot read or retrieve table as follow
2 <tr>
3 <td>Height</td>
4 </tr>
5</table>
6
7<script>
8<!--
9 getTableHeight = document.getElementById("tableID").offsetHeight;
10 alert(getTableHeight)
11 -->
12</script>

Android
Top of Page