Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
andreasst hat gesagt.:funktioniert nur beim IE, hab auch schon window.onload probiert.Code:document.onload=send(forumfrm,'',0);
Syntax fehler?
window.onload=new Function('fx','send(forumfrm,"",0)');
window.onload=nameDerFunktion;
<html>
<head>
<title>Test</title>
<script type="text/javascript">
<!--
function funktion()
{
alert(document.images.length);
}
window.onload=funktion();
//-->
</script>
</head>
<body>
<img src="http://www.tutorials.de/forum/images/misc/tuts_uc.gif">
</body>
</html>
<html>
<head>
<title>Test</title>
<script type="text/javascript">
<!--
function funktion()
{
alert(document.images.length);
}
window.onload=funktion;
//-->
</script>
</head>
<body>
<img src="http://www.tutorials.de/forum/images/misc/tuts_uc.gif">
</body>
</html>