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 highlightCell(link, isHighligh){
if(isHighligh){
link.parentElement.style.backgroundColor = "green"
}
else{
link.parentElement.style.backgroundColor = "white";
}
}
</script>
</HEAD>
<BODY>
<table>
<tr>
<td>
<a href="[URL unfurl="true"]http://www.microsoft.com"[/URL] onmouseover="javascript:highlightCell(this, true)" onmouseout="javascript:highlightCell(this, false)">MS</a>
</td>
</tr>
</table>
</BODY>
</HTML>
Hope this helps.