Hallo ich versuche ein POPUP Fenster (automatischladend) zu machen, das sich automatisch nach 2 Sekunden wieder schliesst.
Wer kann mir ein Script geben?
Gruss
Heidi
Heidi Klöppel Gast |
Heidi Klöppel Gast |
Hallo ich versuche ein POPUP Fenster (automatischladend) zu machen, das sich automatisch nach 2 Sekunden wieder schliesst.
Wer kann mir ein Script geben?
Gruss
Heidi
Bislang habe ich DIES HIER:
<html>
<head>
<script LANGUAGE="JavaScript">
function eKiwi() {
fenster = window.open("http://www.blablabla.de","PopUp","width=50,height=50,menubar=yes,toolbar=yes,scrollbars=no,status=no,resizable=no,location=no,hotkeys=yes")
}
</script>
<title>Titel der Seite</title>
</head>
<body>
</body>
</html>
Moin |
Versuch's mal so:
<html>
<head>
<script LANGUAGE="JavaScript">
function eKiwi() {
fenster = window.open("http://www.blablabla.de","PopUp","width=50,height=50,menubar=yes,toolbar=yes,scrollbars=no,status=no,resizable=no,location=no,hotkeys=yes");
window.setTimeout("fenster.close()",2000);
}
</script>
<title>Titel der Seite</title>
</head>
<body onload='eKiwi();'>
</body>
</html>
greez
JoSsiF
« PHP codes für Foren | Admin Rechte » | ||