borobudur: table node hinzufügen

Hallo, ich versuche einen table-node hinzuzufügen. Der Firefox macht das brave aber der IE will nicht. Weiss jemand wie das bei MS macht?

function chooseFolder(chosenTask) {
    var ct = document.getElementById("delchoosetask");
    document.getElementById("adminform").removeChild(ct);

var table = document.createElement("table");
    table.setAttribute("border","1");
    var tr = document.createElement("tr");
    var td = document.createElement("td");
    var text = document.createTextNode( "Home" );
    td.appendChild(text);
    tr.appendChild(td);
    table.appendChild(tr);
    document.getElementById("adminform").appendChild(table);
  }

  1. Hi,

    Hallo, ich versuche einen table-node hinzuzufügen. Der Firefox macht das brave aber der IE will nicht. Weiss jemand wie das bei MS macht?

    Du hast tbody nicht berücksichtigt.

    cu,
    Andreas

    --
    Warum nennt sich Andreas hier MudGuard?
    Schreinerei Waechter
    Fachfragen per E-Mail halte ich für unverschämt und werde entsprechende E-Mails nicht beantworten. Für Fachfragen ist das Forum da.
    1. Danke Andreas, genau das war das problem.
      Gruss aus genf

    2. MudGuard,

      Du hast tbody nicht berücksichtigt.

      Wo hab ich das schon mal gehört? ;-)
      Gunnar

      --
      I never intended HTML source code (the stuff with the angle brackets) to be seen by users. […] To my surprise, people quickly became familiar with the tags and started writing their own HTML documents directly. (Tim Berners-Lee in Weaving the Web)