hi anyone,
i am using JSP to increase the number of rows in a table. At the same time i need to retrieve the height of table upon each increment. How can i achieve this.
eg.
<% while(rowcount < totalrows) { %>
<table id = "t1">
<tr>
<td>text</td>
</tr>
</table>
<% } %>
I tried using document.all.t1.height but it did not work.
please help.
thanks in adv.
i am using JSP to increase the number of rows in a table. At the same time i need to retrieve the height of table upon each increment. How can i achieve this.
eg.
<% while(rowcount < totalrows) { %>
<table id = "t1">
<tr>
<td>text</td>
</tr>
</table>
<% } %>
I tried using document.all.t1.height but it did not work.
please help.
thanks in adv.