Sascha321: Tabelle automatisch erweitern

Beitrag lesen

Hallo Ashura,

mhh ich bin nun soweit das mir eine neue Zeile eingefügt wird aber ich bekomme es nicht hin das mir eine Spalte eingefügt wird.
Ich weiss wirklich nicht mehr weiter.
<html>
<head>
<script type="text/javascript">
<!--
var Zeile = 2;
function newrow()
{

var spalte = document.getElementById("quali1").insertRow(Zeile);
      Zeile +=1;
}

//-->
</script>
</head>
</head>

<body >
<form name="Formular" action="">
<table id="quali1" width="750" height="5" border="2" align="center">
   <tr>
    <td class="style4">Pos</td>
  </tr>
   <tr>
    <td><input size="2"></td>
   </tr>
</table>
</form>
<input type="submit" onClick="newrow()" value="neue Zeile">
</body>
</html>