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.
<script>
var timeoutObject;
function checkIframe()
{
//look for close-BODY tag in iframe HTML
if (innerIframe.document.getElementsByTagName("HTML")[0].innerHTML.toUpperCase().indexOf("</BODY>") > -1)
{
clearTimeout(timeoutObject);
//whatever else you want to do
}
else
{
timeoutObject = setTimeout(checkIframe(), 100)
}
}