-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathdogfood.html
86 lines (74 loc) · 2.88 KB
/
dogfood.html
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE HTML>
<html>
<head>
<title>Org Chart</title>
<link rel="stylesheet" href="demo.css"/>
<link rel="stylesheet" href="../jquery.orgchart.css"/>
<style>
span.title {
font-weight: normal;
font-style: italic;
color: #404040;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="../jquery.orgchart.js"></script>
<script>
$(function() {
$("#organisation").orgChart({container: $("#main")});
});
</script>
</head>
<body>
<div id="left">
<ul id="organisation">
<li class="company"><em><a href="http://www.capricasoftware.co.uk">Caprica Software</a></em>
<ul>
<li>Mark Lee<br/><span class='title'>Overlord</span>
<ul>
<li>Sales<br/>
<ul>
<li>Richard Toole<br/><span class='title'>Minion</span></li>
<li>Noah Scruples<br/><span class='title'>Minion</span></li>
</ul>
</li>
<li>Marketing
<ul>
<li>Liza Cumming<br/><span class='title'>Minion</span></li>
<li>Lotte<br/>Fibze<br/><span class='title'>Minion</span></li>
</ul>
</li>
<li>Human Resources<br/>
<ul>
<li>Misty Nethers<br/><span class='title'>Minion</span></li>
</ul>
</li>
<li>Legal<br/>
<ul>
<li>Rob Newhouse<br/><span class='title'>Minion</span></li>
</ul>
</li>
<li>Public Relations<br/>
<ul>
<li>Tracy Chavington<br/><span class='title'>Minion</span></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div id="content">
<h1>JQuery/CSS Organisation Chart</h1>
<div id="main">
</div>
<div class="text">
<h2>JQuery</h2>
<pre>
$("#organisation").orgChart({container: $("#main")});
</pre>
</div>
</div>
</body>
</html>