-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdrawgrid.html
More file actions
29 lines (23 loc) · 804 Bytes
/
drawgrid.html
File metadata and controls
29 lines (23 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>d3 | simple square grid</title>
<meta name="author" content="csci324 ">
<link rel="stylesheet" href="main.css">
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js" charset="utf-8"></script>
</head>
<body>
<form name="myform" onSubmit="return handleClick()">
<input name="Submit" type="submit" value="Draw" />
<input type="text" id="numofrow" maxlength="" />
<input type="text" id="numofcol" maxlength="" />
</form>
<header>
<h4 id="grid-ref">roll-over grid</h4>
</header>
<section id='grid'></section>
<script src="d3_code_simple_grid.js" charset="utf-8"></script>
</body>
</html>