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.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
<html>
<head>
<title>Untitled</title>
<script type="text/javascript"><!--
function doMinimize() {
window.moveTo( -100000, -100000 );
}
function doShow() {
window.moveTo( 0, 0 );
}
onfocus = doShow;
//--></script>
</head>
<body>
<a href="#" onclick="doMinimize(); return false;">Minimize Me!</a>
</body>
</html>
<script type="text/javascript"><!--
var isVisible = true;
function doMinimize() {
window.moveTo( -100000, -100000 );
window.blur();
isVisible = false;
}
function doShow() {
if ( !isVisible ) {
window.moveTo( 0, 0 );
isVisible = true;
}
}
onfocus = doShow;
//--></script>