simple_table.html 385 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>Simple table</title>
  6. </head>
  7. <body>
  8. <h1>Sample 1</h1>
  9. <pre>{ "a": [ 1, 2, 3 ], "b": [2, 3, 4]}</pre>
  10. <div id="container"></div>
  11. <script src="../table4JS.js"></script>
  12. <script>
  13. var table1 = makeTable(document.getElementById("container"), { "a": [ 1, 2, 3 ], "b": [2, 3, 4]});
  14. </script>
  15. </body>
  16. </html>