forked from tarunbatta/jqueryUiTreeControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.08 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" href="Styles/smoothness/jquery-ui-1.10.3.custom.min.css" />
<script src="Scripts/jquery-2.0.1.min.js"></script>
<script src="Scripts/jquery-ui-1.10.3.custom.min.js"></script>
<script src="Scripts/jquery.btechco.tree.js"></script>
</head>
<body>
<div>
<h2>jQuery UI Treeview Examples</h2>
<ul>
<li>
<a href="jsonlinear.html">Linear Json</a>
</li>
<li>
<a href="jsonhierarchy.html">Hierarchy Json</a>
</li>
<li>
<a href="xmllinear.html">Linear Xml</a>
</li>
<li>
<a href="xmllhierarchy.html">Hierarchy Xml</a>
</li>
</ul>
</div>
<div>
<h2>jQuery UI Treeview Test Page</h2>
<ul>
<li>
<a href="test.html">Test</a>
</li>
</ul>
</div>
</body>
</html>
<script>
$(document).ready(function () {
});
</script>