aboutsummaryrefslogtreecommitdiffstats
path: root/demos/draggable/handle.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-09-10 09:17:58 -0400
committerScott González <scott.gonzalez@gmail.com>2010-09-10 09:17:58 -0400
commit6cf45dd25a98f98c91a4000345fc5597f9929939 (patch)
tree192ef4a8128f42d980c5415136a0dca0057aa4d4 /demos/draggable/handle.html
parent98fb8c836220730bb9d7c0d73d6766d2b898d773 (diff)
downloadjquery-ui-6cf45dd25a98f98c91a4000345fc5597f9929939.tar.gz
jquery-ui-6cf45dd25a98f98c91a4000345fc5597f9929939.zip
Draggable demos: Coding standards.
Diffstat (limited to 'demos/draggable/handle.html')
-rw-r--r--demos/draggable/handle.html32
1 files changed, 17 insertions, 15 deletions
diff --git a/demos/draggable/handle.html b/demos/draggable/handle.html
index 16bd8a8d7..e7c0c650f 100644
--- a/demos/draggable/handle.html
+++ b/demos/draggable/handle.html
@@ -1,28 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
- <meta charset="UTF-8" />
+ <meta charset="utf-8">
<title>jQuery UI Draggable - Handles</title>
- <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="../../jquery-1.4.2.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
- <script type="text/javascript" src="../../ui/jquery.ui.draggable.js"></script>
- <link type="text/css" href="../demos.css" rel="stylesheet" />
- <style type="text/css">
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.4.2.js"></script>
+ <script src="../../ui/jquery.ui.core.js"></script>
+ <script src="../../ui/jquery.ui.widget.js"></script>
+ <script src="../../ui/jquery.ui.mouse.js"></script>
+ <script src="../../ui/jquery.ui.draggable.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <style>
#draggable, #draggable2 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
#draggable p { cursor: move; }
</style>
- <script type="text/javascript">
+ <script>
$(function() {
- $("#draggable").draggable({ handle: 'p' });
- $("#draggable2").draggable({ cancel: "p.ui-widget-header" });
- $("div, p").disableSelection();
+ $( "#draggable" ).draggable({ handle: "p" });
+ $( "#draggable2" ).draggable({ cancel: "p.ui-widget-header" });
+ $( "div, p" ).disableSelection();
});
</script>
</head>
<body>
+
<div class="demo">
<div id="draggable" class="ui-widget-content">
@@ -38,11 +39,12 @@
</div><!-- End demo -->
-<div class="demo-description">
+
+<div class="demo-description">
<p>Allow dragging only when the cursor is over a specific part of the draggable. Use the <code>handle</code> option to specify the jQuery selector of an element (or group of elements) used to drag the object.</p>
<p>Or prevent dragging when the cursor is over a specific element (or group of elements) within the draggable. Use the <code>cancel</code> option to specify a jQuery selector over which to "cancel" draggable functionality.</p>
-
</div><!-- End demo-description -->
+
</body>
</html>