2008-12-30 19:30:49 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2008-12-31 22:16:02 +00:00
|
|
|
<title>jQuery UI Draggable - Sortable Demo</title>
|
2008-12-30 19:30:49 +00:00
|
|
|
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
|
2009-01-03 04:56:50 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.3pre.js"></script>
|
2008-12-30 19:30:49 +00:00
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.draggable.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.sortable.js"></script>
|
2008-12-31 06:29:31 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
2008-12-30 19:30:49 +00:00
|
|
|
<style type="text/css">
|
2008-12-31 14:05:54 +00:00
|
|
|
.demo ul { list-style-type: none; margin: 0; padding: 0; margin-bottom: 10px; }
|
|
|
|
.demo li { margin: 3px; padding: 2px; width: 150px; }
|
2008-12-30 19:30:49 +00:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2008-12-31 06:29:31 +00:00
|
|
|
$("#sortable").sortable();
|
|
|
|
$("#draggable").draggable({
|
2008-12-31 14:02:14 +00:00
|
|
|
connectToSortable: ['#sortable'],
|
2008-12-30 19:30:49 +00:00
|
|
|
helper: 'clone'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2008-12-31 14:02:14 +00:00
|
|
|
<div class="demo">
|
|
|
|
|
2008-12-30 19:30:49 +00:00
|
|
|
<ul>
|
2008-12-31 06:29:31 +00:00
|
|
|
<li id="draggable" class="ui-state-highlight">Drag me down</li>
|
2008-12-30 19:30:49 +00:00
|
|
|
</ul>
|
|
|
|
|
2008-12-31 06:29:31 +00:00
|
|
|
<ul id="sortable">
|
2008-12-30 19:30:49 +00:00
|
|
|
<li class="ui-state-default">Item 1</li>
|
|
|
|
<li class="ui-state-default">Item 2</li>
|
|
|
|
<li class="ui-state-default">Item 3</li>
|
|
|
|
<li class="ui-state-default">Item 4</li>
|
|
|
|
<li class="ui-state-default">Item 5</li>
|
|
|
|
</ul>
|
|
|
|
|
2008-12-31 14:02:14 +00:00
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<!-- Add description here -->
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
2008-12-30 19:30:49 +00:00
|
|
|
</body>
|
|
|
|
</html>
|