javascript ausgabe

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • javascript ausgabe

    heiho all

    hab da wider mal ne frage:
    ich möchte herausfinden wie gross das anzeigefenster des browsers ist und damit dann die tabellenbreite anpassen.

    ich bin soweit:

    Code:
    <html>
    <head>
    <style type="text/css">
       body { margin-top:0cm; 
    	  margin-left:0cm;
    	}
    </style>
    
    	<title>tab1</title>
    </head>
    <body>
    <script type="text/javascript">
    	var test= screen.width;
    	if(test == 1024)
    	{
    		test2 = 100;
    	}
    	elseif(test == 800)
    	{
    		test2 = 1000;
    	}
    </script>
    <table border="1" width="" cellspacing="0" cellpadding="0">
    	<tr height="30">
    		<td colspan="3" width=""><font size="+5">Das ist die Überschrift</font></td>
    	</tr>
    	<tr height="500">
    		<td width="190">Rahmen links</td>
    		<td width="590">Inhalt</td>
    		<td width="???">Blindrahmen</td>
    	</tr>
    </table>
    </body>
    dort wo die 3 fragezeichen sind, möcht ich dann die variable test2 ausgeben! bin halt der wirkliche javascript newbie!!!!
    First: Things get worse under pressure.
    Second: If anything just cannot go wrong, it will anyway
    Third: A falling object will always land where it can do the most damage.

  • #2
    http://selfhtml.teamone.de/javascrip...ment.htm#write

    Kommentar


    • #3
      juheba, war voll auf dem falschen weg... is jetzt gegangen

      danke @MoRtAlAn
      First: Things get worse under pressure.
      Second: If anything just cannot go wrong, it will anyway
      Third: A falling object will always land where it can do the most damage.

      Kommentar

      Lädt...
      X