
Fenster oeffnet automatisch
Mit dieser Funktion lässt sich automatisch ein Fenster öffnen. Wie im Beispiel nach 5 Sekunden.
|
|
<html>
<head>
<script LANGUAGE="JavaScript">
function reload()
{
window.open("popup.html","FName",
"toolbar=no,menubar=no,width=200,height=200")
}
//5 sek = 5000 millisek
setTimeout("reload();", 5000);
</script>
</head>
<body>
PopUp öffnet sich in 5 Sekunden!
</body>
</html>
|
T: 34979 G: 7 H: 10 T: +4 O: 5
|
|