Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<script language="javascript">
<!--
function findColumnWidths(tableId)
{
var myTable = document.getElementById(tableId);
var outputStr = '';
for (var colLoop=0; colLoop<myTable.rows[0].cells.length; colLoop++) outputStr += 'Column ' + (colLoop+1) + ' width: ' + myTable.rows[0].cells[colLoop].offsetWidth + '\n';
alert(outputStr);
}
//-->
</script>
</head>
<body>
<table id="myTable" width="75%" cellspacing="2" border="1">
<tr>
<td>abcdefg</td>
<td>hij</td>
<td>klmnopqrstuvwxyz</td>
<td>1</td>
<td>23456</td>
<td>789</td>
</tr>
</table>
<br>Click <a href="javascript:findColumnWidths('myTable');">here</a> to find the column widths of the first row
</body>
</html>