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.
function openIt() {
var w = window.open('','w','');
var h = document.getElementsByTagName("body")[0].innerHTML;
with (w.document) {
open();
writeln('<html><head><title>title</title></head><body>');
writeln(h);
writeln('</body></html>');
close();
}
}
<a href="#" onclick="openIt();return false;>Click Me</a>
<a href="#" onclick="openIt();return false;[red]"[/red]>Click Me</a>