This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/libraries/jquery.ui/tests/visual/draggable.handle.html

27 lines
630 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Simple Draggable</title>
<link rel="stylesheet" href="all.css" type="text/css" media="screen">
<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.draggable.js"></script>
<script type="text/javascript">
$(function() {
$("#draggable").draggable({ handle: "span" });
});
</script>
</head>
<body>
<ul class="plugins">
<li>
Draggable
<div id="draggable">
<span>Handle</span>
</div>
</li>
</ul>
</body>
</html>