Z4ppy: Seite nur bei vorhandenem JavaScript anzeigen

Beitrag lesen

Hallo,

»» Bei der Adressierung vom container. Versuche statt "document.container" mal "document.getElementById('container')" - das sollte besser gehen.

ja, aber nur wenn das Element auch eine ID hat. Im Codebeispiel von Z4 hat es nämlich nur ein name-Attribut.

So long,
Martin

Nunja, ich hab jetzt also folgenden Code:

<html>
 <head>
  <title>Loginsystem</title>
  <script type="text/javascript">
   function show() {
     document.getElementByID('container').style.display="block";
   }
  </script>
 </head>
 <body onLoad="show();">
  <div id="container" style="display:none;">
   <!-- Inhalt, nicht leer :P -->
  </div>
  <noscript>
   This page is not usable without JavaScript.
  </noscript>
 </body>
</html>

Dennoch wird nix angezeigt...

MfG Z4ppy