Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
function winopen(link1, link2)
{
win1=window.open("","seite1","toolbar,location,status,scrollbars,resizable,menubar");
win1.moveTo(0,0);
win1.resizeTo(screen.availWidth,screen.availHeight);
win1.location.href=link1;
win2=window.open("","seite2","toolbar,location,status,scrollbars,resizable,menubar");
win2.moveTo(0,0);
win2.resizeTo(screen.availWidth,screen.availHeight);
win2.location.href=link2;
}
<a href="javascript:winopen('http://www.google.de', 'http://html.de')">klick mich</a>
<a href="#" onclick="javascript:winopen('http://www.google.de', 'http://html.de')">klick mich</a>