Startseite
Hilfe-ForumFrageSuchenKontakt/Impressum

ForenForum
PopUp
Von: Heidi Klöppel
am 12.01.2004


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

Antwort 1 von Heidi Klöppel
am 12.01.2004


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>

Antwort 2 von JoSsiF *****
am 12.01.2004


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 Cool
JoSsiF

Antwort 3 von Heidi Klöppel
am 12.01.2004


DANKE VIELMALS

Das hat gesessen.   ;-)


Grüsse
Heidi

Antwort 4 von Denis *****
am 13.01.2004


Ich hab auf meiner Pickeon-Seite eins mit 20 Sek. aber ohne automatische öffnung.

_