Aurel: meta http-equiv refresh...

Beitrag lesen

Hi there!

Ich steh grad total am Berg bei folgendem Code:

Wie es funktionieren soll:
-Popup machen, das "http-equiv refresh" im head trägt und weiterleitet.

Was passiert:
-Konqueror: funktioniert wie erwartet
-Mozilla: leitet nicht weiter? Walum??

-------------
<html>
  <head>
    <script language="JavaScript">
     function popup(w,h,site) {
      x = screen.availWidth/2-w/2;
      y = screen.availHeight/2-h/2;
      var popupWindow =  window.open('','Zoom','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);popupWindow.document.write(site);
     }
    </script>
  </head>
  <body><a href="javascript:popup(350,250,'<html><head><meta http-equiv=refresh  content=5;http://www.heise.de></head><body>Momenterl...</body></html>')">Popup</a>
  </body>
</html>
---------------