R
RMZ
If you have an HTML table defined like so
<table border="1" width="100%" height="100%">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
Is it possible using JavaScript to return the width and height pixel
counts for the width and height of the table?
<table border="1" width="100%" height="100%">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
Is it possible using JavaScript to return the width and height pixel
counts for the width and height of the table?