View Single Post
ישן 02-07-06, 05:57   # 1
miniature
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 1,754

miniature לא מחובר  

[JS] יצירת טבלה עם 2 תאים.

יש לי DIV עם השם abc, ואני מנסה ליצור בו טבלה עם 2 תאים.
זהו הקוד:
HTML קוד:
  var table = document.getElementById('abc').createElement("TABLE");
  var row0 = table.insertRow(0);
  var cell0 = row0.insertCell(0);
  var cell1 = row0.insertCell(1);
  cell0.innerHTML = "New Cell 1";
  cell1.innerHTML = "New Cell 2";
משום מה הוא לא עובד..
__________________
יואב.

דרכים ליצירת קשר:

אימייל: thebigfire@walla.co.il
הודעה פרטית
  Reply With Quote