-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 802 Bytes
/
index.html
File metadata and controls
23 lines (22 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="lib/prototype-1.6.0.3.js"></script>
<script type="text/javascript" src="bigtable.js"></script>
<link rel="stylesheet" type="text/css" href="bigtable.css" />
</head>
<body>
<div id="bigtable"></div>
<script type="text/javascript">
Event.observe(document, 'dom:loaded', function() {
new bigtable(
'bigtable', // id
['Column 0', 'Column 1', 'Column 2', 'Column 3', 'Column 4', 'Column 5', 'Column 6', 'Column 7', 'Column 8', 'Column 9'], // column labels
1000000 // numRows
);
});
</script>
</body>
</html>