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.
<table name=listTable id=listTable>
<tr>
<td>This will be what gets printed</td>
</tr>
</table>
<script language="javascript">
function fnDoCopy(){
textRange = document.body.createTextRange();
textRange.moveToElementText(listTable);
textRange.execCommand("Copy");
window.open("outputFile.xls","printing");
}
</script>
<input type=button value=Print onClick="fnDoCopy();">