Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. //your javascript code here
  2.  
  3. var body = document.getElementsByTagName("body").item(0);
  4.  
  5. var table = document.createElement("table");
  6. table.setAttribute("border", "1");
  7.  
  8.  
  9. var thead = document.createElement("thead");
  10. var tr1 = document.createElement("tr");
  11.  
  12. var thtd1 = document.createElement("td");
  13. thtd1.innerHTML = "Name";
  14.  
  15.  
  16. var thtd2 = document.createElement("td");
  17. thtd2.innerHTML = "IC";
  18.  
  19.  
  20. tr1.appendChild(thtd1);
  21. tr1.appendChild(thtd2);
  22. thead.appendChild(tr1);
  23.  
  24. //////////////////
  25.  
  26. var tbody = document.createElement("tbody");
  27.  
  28. var tr1 = document.createElement("tr");
  29.  
  30. var thtd1 = document.createElement("td");
  31. thtd1.innerHTML = "John";
  32.  
  33.  
  34. var thtd2 = document.createElement("td");
  35. thtd2.innerHTML = "IC001";
  36.  
  37.  
  38. tr1.appendChild(thtd1);
  39. tr1.appendChild(thtd2);
  40. tbody.appendChild(tr1);
  41.  
  42. table.appendChild(thead);
  43. table.appendChild(tbody);
  44.  
  45. body.appendChild(table);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement