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.
<html>
<head>
<script>
var helpwindow;
function handleHelp(){
if(helpwindow){
if(helpwindow.closed){
helpwindow = window.open('xmlwflowdisplay.html');
}
else{
helpwindow.focus();
}
}
else{
helpwindow = window.open('myHelpPage.html');
}
return false;
}
</script>
</head>
<body onhelp="return handleHelp();">
Some Stuff Here:
</body>
</html>
[/ignore][code]CodeHere