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.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html>
<head>
<title>Untitled</title>
<script type="text/javascript"><!--
function doit(o) {
if (document.body.createTextRange) {
var tr = document.body.createTextRange();
tr.moveToElementText(o);
tr.select();
} else if (document.createRange) {
var tr = document.createRange();
tr.selectNode(o);
window.getSelection().removeAllRanges();
window.getSelection().addRange(tr);
}
}
//--></script>
</head>
<body>
<table border="1"><tr>
<td onclick="doit(this)">hi</td>
<td onclick="doit(this)">hello</td>
</tr></table>
</body>
</html>