mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
32 lines
700 B
HTML
32 lines
700 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Sortable Visual Test : Default</title>
|
||
|
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css" />
|
||
|
<script type="text/javascript" src="../../../jquery-1.3.1.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>
|
||
|
|
||
|
<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>
|
||
|
|
||
|
</body>
|
||
|
</html>
|