forked from filamentgroup/jQuery-Tree-Control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 2.44 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Simple Tree Demo</title>
<link href="css/basic.css" type="text/css" rel="stylesheet" />
<link href="css/enhanced.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="http://filamentgroup.github.com/EnhanceJS/enhance.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="js/jQuery.tree.js"></script>
<script type="text/javascript" src="js/example.js"></script>
</head>
<body>
<ul id="files">
<li><a href="documents">My Documents</a>
<ul>
<li><a href="documents/Christines_Files/">Christine's Files</a>
<ul>
<li><a href="#">Resume.doc</a></li>
<li><a href="#">Cover-letter.doc</a></li>
<li><a href="#">Gift Registry.doc</a></li>
</ul>
</li>
<li><a href="documents/Nathans_Stuff/">Nathan's Stuff</a>
<ul>
<li><a href="#">Birthday Parties.doc</a></li>
<li><a href="#">Area Playgrounds.doc</a></li>
</ul>
</li>
<li><a href="documents/Travel_Ideas/">Travel Ideas</a>
<ul>
<li><a href="#">Potential Places.doc</a></li>
<li><a href="#">Travel Funds.doc</a></li>
</ul>
</li>
<li><a href="documents/Wedding_Plan/">Wedding Plan</a>
<ul>
<li><a href="#">Guests.doc</a></li>
<li><a href="#">Services.doc</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="movies">My Movies</a>
<ul>
<li><a href="#">The Big Lebowski.m4v</a></li>
<li><a href="#">Planet Earth.m4v</a></li>
</ul>
</li>
<li><a href="music">My Music</a>
<ul>
<li><a href="#">Bloc Party - Pioneers.mp3</a></li>
<li><a href="#">Fleet Foxes - Blue Ridge Mountains.mp3</a></li>
</ul>
</li>
<li><a href="photos">My Photos</a>
<ul>
<li><a href="#">yellow-flower.jpg</a></li>
<li><a href="#">orange-flower.jpg</a></li>
<li><a href="#">red-flower.jpg</a></li>
<li><a href="#">white-flower.jpg</a></li>
<li><a href="#">bumblebees.jpg</a></li>
</ul>
</li>
</ul>
</body>
</html>