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 getContents(cellID)
{
var myCellObj = document.getElementById(cellID);
alert(myCellObj.firstChild.nodeValue);
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<TABLE BORDER="1">
<TR>
<TD ID="c1r1">abc</TD>
<TD ID="c2r1">def</TD>
<TD ID="c3r1">ghi</TD>
</TR>
<TR>
<TD ID="c1r2">jkl</TD>
<TD ID="c2r2">mno</TD>
<TD ID="c3r2">pqr</TD>
</TR>
<TR>
<TD ID="c1r3">stu</TD>
<TD ID="c2r3">vwx</TD>
<TD ID="c3r3">yz</TD>
</TR>
</TABLE>
<BR>
Click <A HREF="javascript:getContents('c2r2');">here</A> to see the contents of cell c2r2...
</BODY>
</HTML>