forked from emaag/interactive-decision-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowTree.html
More file actions
51 lines (49 loc) · 1.2 KB
/
Copy pathshowTree.html
File metadata and controls
51 lines (49 loc) · 1.2 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Interactive Decision Tree</title>
<link href="css/decisionTree.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<div id="debug"></div>
<ul class="tree">
<li id="branch-1">
<p>Thing #1</p>
<ul>
<li><a href="#branch-1-1">One</a></li>
<li><a href="#branch-1-2">Two</a></li>
</ul>
</li>
<li id="branch-1-1">
<p>Thing #1-1</p>
<ul>
<li><a href="#branch-1-1-1">One</a></li>
<li><a href="#branch-1-1-2">Two</a></li>
</ul>
</li>
<li id="branch-1-2">
<p>Thing #1-2</p>
<ul>
<li><a href="#branch-1-2-1">One</a></li>
<li><a href="#branch-1-2-2">Two</a></li>
</ul>
</li>
<li id="branch-1-1-1">
<p>Thing #1-1-1</p>
</li>
<li id="branch-1-1-2">
<p>Thing #1-1-2</p>
</li>
<li id="branch-1-2-1">
<p>Thing #1-2-1</p>
</li>
<li id="branch-1-2-2">
<p>Thing #1-2-2</p>
</li>
</ul>
<a id="tree-reset"></a>
<script type="text/javascript" src="js/decisionTree.js"></script>
</body>
</html>