H-P Ortner: IE im Vollbildmodus ohne Adressleiste

Beitrag lesen

Da habe ich doch tasächlich den Abschnitt richtig geschlossen und schon funktioniert es nicht - da muss man also genau so aufpassen wie bei HTML-Tags. Jetzt sollte es aber funktionieren:
---------

  
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">  
<html>  
<head>  
<title>Vollbild</title>  
  <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">  
  <script type="text/javascript">  
  <!--  
  function openlink(url)  
  {  
    wo = "fullscreen=yes,menubar=no,status=yes,resizable=yes,location=no,toolbar=no,scrollbar=no";  
    fenster = open(url, "Fenstername", wo);  
    return true;  
    }  
  //-->  
  </script>  
</head>  
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">  
<h1>SelfHtml im Vollbild</h1>  
<form action="">  
<input type="Button" value="Neues Fenster" onClick="openlink('http://aktuell.de.selfhtml.org/')">  
</form>  
<noscript>  
  Da wäre ein Vollbildlink auf  
  <a href="http://aktuell.de.selfhtml.org/">http://aktuell.de.selfhtml.org/</a>  
  vorgesehen. Funktioniert aber nur mit Javascript.  
</noscript>  
</body>  
</html>  

---------
Viele Grüße

H-P Ortner