aboutsummaryrefslogtreecommitdiff
path: root/static/development-bundle/demos/slider/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/development-bundle/demos/slider/default.html')
-rw-r--r--static/development-bundle/demos/slider/default.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/static/development-bundle/demos/slider/default.html b/static/development-bundle/demos/slider/default.html
new file mode 100644
index 0000000..da92869
--- /dev/null
+++ b/static/development-bundle/demos/slider/default.html
@@ -0,0 +1,34 @@
1<!doctype html>
2<html lang="en">
3<head>
4 <title>jQuery UI Slider - Default functionality</title>
5 <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
6 <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
7 <script type="text/javascript" src="../../ui/ui.core.js"></script>
8 <script type="text/javascript" src="../../ui/ui.slider.js"></script>
9 <link type="text/css" href="../demos.css" rel="stylesheet" />
10 <style type="text/css">
11 #demo-frame > div.demo { padding: 10px !important; };
12 </style>
13 <script type="text/javascript">
14 $(function() {
15 $("#slider").slider();
16 });
17 </script>
18</head>
19<body>
20
21<div class="demo">
22
23<div id="slider"></div>
24
25</div><!-- End demo -->
26
27<div class="demo-description">
28
29<p>The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.</p>
30
31</div><!-- End demo-description -->
32
33</body>
34</html>