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 showAlt(t)
{
altMessage = 'Message for the thing here';
div = document.getElementById('altDiv');
div.innerText = altMessage;
div.style.display = 'block';
div.style.left = t.offsetLeft + t.offsetWidth;
div.style.top = + t.offsetTop + t.offsetHeight;
}
//--></script>
</HEAD>
<BODY>
<img src='whatever.jpg' onMouseOver='showAlt(this)' style='border:1px solid black;' onMouseOut='altDiv.style.display = "none"'>
<div id='altDiv' style='position:absolute;left:0;top:0;display:none;border:1px solid black;padding:none;'>this is the alt div</div>
</BODY>
</HTML>