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 timeoutID = null;
var timeoutSet = false;
function SetTimeout() {
timeoutID = window.setTimeout('closer()',3000);
timeoutSet = true;
}
function ClearTimeout() {
if ( timeoutSet ) {
clearTimeout(timeoutID);
timeoutSet = false;
}
}
</script>
...
<body onblur="SetTimeout()" onfocus="ClearTimeout()">
<script>
var timeoutID = null;
var timeoutSet = false;
function SetTimeout() {
timeoutID = window.setTimeout('window.close()',3000);
timeoutSet = true;
}
function ClearTimeout() {
if ( timeoutSet ) {
clearTimeout(timeoutID);
timeoutSet = false;
}
}
</script>
...
<body onblur="SetTimeout()" onfocus="ClearTimeout()">