Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
Link: [url]www.xyz.de/index.php?parameter=inhalt[/url]
<input type='text' name='name' value='<? echo $parameter; ?>'>
function openWindow(deinwert) {
var HTMLstr = '<HTML><HEAD><TITLE>© Holger Krupp (holgerkrupp.de) </TITLE></HEAD>';
HTMLstr += '\n<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LEFTMARGIN=10 TOPMARGIN=10 MARGINWIDTH=10 MARGINHEIGHT=10>';
HTMLstr += '\n<a href="javascript:self.close();">ZURÜCK</a>';
HTMLstr += '\n<p>der Anfang '+deinwert+' und der Rest der Seite';
HTMLstr += '\n<p>Hier kannste noch was hinschreiben';
HTMLstr += '\n</BODY></HTML>';
var windowWidth = 1060;
var windowHeight = 800;
var scrollingyn = 1
var wallpaperWindow = open('','wallpaperWindow','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + scrollingyn +',resizable=1,left=10,top=20,width=' + windowWidth + ',height=' + windowHeight);
with (wallpaperWindow.document) {
open();
write(HTMLstr);
close();
}
}