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.
<form action="" method="POST" id="myForm">
<input type="Button" name="" value="Close" id="myButton" onClick="closeWindow()">
<script type="" language="JavaScript">
myWindow = window.open("", "tinyWindow", 'toolbar, width=150, height=100')
function closeWindow() {
myWindow.document.write("Click 'O.K'. to close me and 'Cancel' to leave me open.")
if (confirm("Are you sure you want to close this window?")) {
myWindow.close()
}
}
</script>
</form>