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 language='Javascript'>
function closeFunction() {
if (blahForm.blahHidden.value == 0) {
//run your cancel button function
}
}
function buttonFunction() {
blahForm.blahHidden.value = 1;
window.location = 'blah.html';
}
</script>
<body onunload='closeFunction()'>
<form name=blahForm value=0>
<input type=hidden name=blahHidden>
<input type=button name=blahButton onclick='buttonFunction()'>
</form>
</body>