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.
window.open(url, name, features, replace)
features
<Script language="javascript">
function openFullSize(url) {
var features="fullscreen=yes";
window.open(url, "_blank", features);
}
</Script>
...
..
<!-- old link above
<A href="toto.htm" target="_blank">open the window</A>
new link above -->
<A href="#" onclick='openFullSize("toto.htm")'>open the window</A>
var features="fullscreen=yes";
var features="height=600, width=800";