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>
<style type="text/css">
table,td,input{border-collapse:collapse;width:200px;font-family:Arial;font-size:10pt;border:1px solid #808080;}
</style>
<script type="text/javascript" language="javascript">
function print_id(id){document.form.textbox.value=id;}
</script>
</head>
<body>
<form name="form">
<table>
<tr id="tr-id-1" onClick="print_id(this.id)"><td>Row 1</td></tr>
<tr id="tr-id-2" onClick="print_id(this.id)"><td>Row 2</td></tr>
<tr id="tr-id-3" onClick="print_id(this.id)"><td>Row 3</td></tr>
<tr id="tr-id-4" onClick="print_id(this.id)"><td>Row 4</td></tr>
<tr id="tr-id-5" onClick="print_id(this.id)"><td>Row 5</td></tr>
<tr id="tr-id-6" onClick="print_id(this.id)"><td>Row 6</td></tr>
<tr id="tr-id-7" onClick="print_id(this.id)"><td>Row 7</td></tr>
</table>
<input type="text" id="textbox"></input>
</form>
</body>
</html>