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.
[b]function[/b] includejs(what)
{
[b]var[/b] js=document.createElement([i]'script'[/i]);
[b]with[/b] (js) {
type=[i]'text/javascript'[/i];
src=what;
}
document.getElementsByTagName([i]'head'[/i])[0].appendChild(js);
}
includejs([i]'first.js'[/i]);
includejs([i]'/second.js'[/i]);
includejs([i]'/subdirectory/third.js'[/i]);