Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. <tr>
  2. <th id = "11" style = "width:100px;height:100px"></th>
  3. <th id = "12" style = "width:100px;height:100px"></th>
  4. <th id = "13" style = "width:100px;height:100px"></th>
  5. <th id = "14" style = "width:100px;height:100px"></th>
  6. <th id = "15" style = "width:100px;height:100px"></th>
  7. <th id = "16" style = "width:100px;height:100px"></th>
  8. <th id = "17" style = "width:100px;height:100px"></th>
  9. <th id = "18" style = "width:100px;height:100px"></th>
  10. </tr>
  11. <tr>
  12. <th id = "21" style = "width:100px;height:100px"></th>
  13. <th id = "22" style = "width:100px;height:100px"></th>
  14. <th id = "23" style = "width:100px;height:100px"></th>
  15. <th id = "24" style = "width:100px;height:100px"></th>
  16. <th id = "25" style = "width:100px;height:100px"></th>
  17. <th id = "26" style = "width:100px;height:100px"></th>
  18. <th id = "27" style = "width:100px;height:100px"></th>
  19. <th id = "28" style = "width:100px;height:100px"></th>
  20. </tr>
  21. <tr>
  22. <th id = "31" style = "width:100px;height:100px"></th>
  23. <th id = "32" style = "width:100px;height:100px"></th>
  24. <th id = "33" style = "width:100px;height:100px"></th>
  25. <th id = "34" style = "width:100px;height:100px"></th>
  26. <th id = "35" style = "width:100px;height:100px"></th>
  27. <th id = "36" style = "width:100px;height:100px"></th>
  28. <th id = "37" style = "width:100px;height:100px"></th>
  29. <th id = "38" style = "width:100px;height:100px"></th>
  30. </tr>
  31. <tr>
  32. <th id = "41" style = "width:100px;height:100px"></th>
  33. <th id = "42" style = "width:100px;height:100px"></th>
  34. <th id = "43" style = "width:100px;height:100px"></th>
  35. <th id = "44" style = "width:100px;height:100px"></th>
  36. <th id = "45" style = "width:100px;height:100px"></th>
  37. <th id = "46" style = "width:100px;height:100px"></th>
  38. <th id = "47" style = "width:100px;height:100px"></th>
  39. <th id = "48" style = "width:100px;height:100px"></th>
  40. </tr>
  41. <tr>
  42. <th id = "51" style = "width:100px;height:100px" ></th>
  43. <th id = "52" style = "width:100px;height:100px"></th>
  44. <th id = "53" style = "width:100px;height:100px"></th>
  45. <th id = "54" style = "width:100px;height:100px"></th>
  46. <th id = "55" style = "width:100px;height:100px"></th>
  47. <th id = "56" style = "width:100px;height:100px"></th>
  48. <th id = "57" style = "width:100px;height:100px"></th>
  49. <th id = "58" style = "width:100px;height:100px"></th>
  50. </tr>
  51. <tr>
  52. <th id = "61" style = "width:100px;height:100px"></th>
  53. <th id = "62" style = "width:100px;height:100px"></th>
  54. <th id = "63" style = "width:100px;height:100px"></th>
  55. <th id = "64" style = "width:100px;height:100px"></th>
  56. <th id = "65" style = "width:100px;height:100px"></th>
  57. <th id = "66" style = "width:100px;height:100px"></th>
  58. <th id = "67" style = "width:100px;height:100px"></th>
  59. <th id = "68" style = "width:100px;height:100px"></th>
  60. </tr>
  61. <tr>
  62. <th id = "71" style = "width:100px;height:100px"></th>
  63. <th id = "72" style = "width:100px;height:100px"></th>
  64. <th id = "73" style = "width:100px;height:100px"></th>
  65. <th id = "74" style = "width:100px;height:100px"></th>
  66. <th id = "75" style = "width:100px;height:100px"></th>
  67. <th id = "76" style = "width:100px;height:100px"></th>
  68. <th id = "77" style = "width:100px;height:100px"></th>
  69. <th id = "78" style = "width:100px;height:100px"></th>
  70. </tr>
  71. <tr>
  72. <th id = "81" style = "width:100px;height:100px"></th>
  73. <th id = "82" style = "width:100px;height:100px"></th>
  74. <th id = "83" style = "width:100px;height:100px"></th>
  75. <th id = "84" style = "width:100px;height:100px"></th>
  76. <th id = "85" style = "width:100px;height:100px"></th>
  77. <th id = "86" style = "width:100px;height:100px"></th>
  78. <th id = "87" style = "width:100px;height:100px"></th>
  79. <th id = "88" style = "width:100px;height:100px"></th>
  80. </tr>
  81.  
  82. function maketable()
  83. {
  84. a = "<tr>"
  85. for(i=11;i<89;i++)
  86. {
  87. a += "<th id = '"+i+"' style = \"width:100px;height:100px\"></th>"
  88. if(i%10 == 8)
  89. {
  90. a += "</tr><tr>"
  91. i += 2
  92. }
  93. }
  94. document.getElementById("chadathan").innerHTML = a
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement