aboutsummaryrefslogtreecommitdiffstats
path: root/demos/progressbar/default.html
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-23 13:23:38 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-23 13:23:38 +0000
commit1d3e8909acdff948e06cceb951a6ed0ef5ab4d9c (patch)
tree794e041427a58c75d64cf302462091347d0b8dd6 /demos/progressbar/default.html
parent8c94a14b0f0c1aa0071338d17614671a3f6c2efe (diff)
downloadjquery-ui-1d3e8909acdff948e06cceb951a6ed0ef5ab4d9c.tar.gz
jquery-ui-1d3e8909acdff948e06cceb951a6ed0ef5ab4d9c.zip
demos: Added progressbar and slider demos
Diffstat (limited to 'demos/progressbar/default.html')
-rw-r--r--demos/progressbar/default.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/demos/progressbar/default.html b/demos/progressbar/default.html
new file mode 100644
index 000000000..dabd8a933
--- /dev/null
+++ b/demos/progressbar/default.html
@@ -0,0 +1,23 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Progressbar - Default Demo</title>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.2.6.js"></script>
+ <script type="text/javascript" src="../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/ui.progressbar.js"></script>
+ <script type="text/javascript">
+ $(function() {
+ $("#progressbar").progressbar({
+ value: 37
+ });
+ })
+ </script>
+</head>
+<body>
+
+<div id="progressbar"></div>
+
+</body>
+</html>