mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
37 lines
729 B
HTML
37 lines
729 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Simple Sortable</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.sortable.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
$(function() {
|
||
|
$("#sortable").sortable();
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<ul class="plugins">
|
||
|
<li>
|
||
|
Sortable
|
||
|
<div id="sortable">
|
||
|
<div>C</div>
|
||
|
<div>I</div>
|
||
|
<div>G</div>
|
||
|
<div>F</div>
|
||
|
<div>D</div>
|
||
|
<div>H</div>
|
||
|
<div>A</div>
|
||
|
<div>E</div>
|
||
|
<div>B</div>
|
||
|
</div>
|
||
|
</li>
|
||
|
</ul>
|
||
|
|
||
|
</body>
|
||
|
</html>
|