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>
submitFlag = true;
function checkSubmit() {
if (submitFlag) {
submitFlag = false;
return true;
}
return false;
}
</script>
<body>
<form name=blahForm onsubmit='return(checkSubmit())'>
<input type=submit value='Click Me'>
</form>
</body>