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>
<script>
function checkV()
{
if (document.getElementById('test').offsetTop > (document.body.scrollTop+document.body.clientHeight))
{alert('not visible');}
else
{alert('visible');}
}
</script>
<body onscroll='checkV()'>
<BR><BR><BR><BR><BR><BR><BR><BR>
<BR><BR><BR><BR><BR><BR><BR>
<BR><BR><BR><BR><BR><BR>
<BR><BR><BR><BR><BR>
<BR><BR><BR><BR>
<BR><BR><BR>
<BR><BR>
<BR>
<div id='test'>foo</div>
</body>
</html>