diff options
author | Chi Cheng <cloudream@gmail.com> | 2008-12-31 17:47:42 +0000 |
---|---|---|
committer | Chi Cheng <cloudream@gmail.com> | 2008-12-31 17:47:42 +0000 |
commit | 5f39555e79c84c97eeedc58d54c83183ce3707a6 (patch) | |
tree | 5469515506bebca08f430dd9af6b917ea29b3fd9 | |
parent | 0b9227475c88a5ff909a6e9c00012a2a45ce5cf7 (diff) | |
download | jquery-ui-5f39555e79c84c97eeedc58d54c83183ce3707a6.tar.gz jquery-ui-5f39555e79c84c97eeedc58d54c83183ce3707a6.zip |
demos: +selectable default demo
-rw-r--r-- | demos/selectable/default.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/demos/selectable/default.html b/demos/selectable/default.html new file mode 100644 index 000000000..467a80e20 --- /dev/null +++ b/demos/selectable/default.html @@ -0,0 +1,55 @@ +<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Selectable - Default Demo</title>
+ <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.selectable.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+
+ <style type="text/css">
+ #selectable .ui-selecting {
+ background: #FECA40;
+ }
+ #selectable .ui-selected {
+ background: #F39814;
+ }
+ </style>
+ <script type="text/javascript">
+ $(function() {
+ $("#selectable").selectable({
+ stop:function(){
+ var result = $("#select-result");
+ result.text("");
+ $("#selectable > .ui-selected").each(function(){
+ result.text( result.text() + " #" + ($("#selectable li").index(this)+1) );
+ });
+ }
+ });
+ });
+ </script>
+</head>
+<body>
+<div class="demo">
+
+<ol id="selectable">
+ <li>Draw a box with your mouse to select items.</li>
+ <li>Draw a box with your mouse to select items.</li>
+ <li>Draw a box with your mouse to select items.</li>
+ <li>Draw a box with your mouse to select items.</li>
+ <li>Draw a box with your mouse to select items.</li>
+</ol>
+
+You've selected: <span id="select-result">none</span>.
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>
+<!-- Add description here -->
+</p>
+
+</div><!-- End demo-description -->
+</body>
+</html>
|