<html>
<head>
<script type='text/javascript' src='js/jquery-1.3.2.js'></script>
<script type="text/javascript" src="js/ui/ui.core.js"></script>
<script type="text/javascript" src="js/ui/ui.sortable.js"></script>
<script type='text/javascript'>
$(document).ready(
function() {
$('ul').sortable({
placeholder: 'tmpPlaceholder',
helper: function(e, element) {
return $(element).clone().addClass('tmpHelper');
}
});
}
);
</script>
<style type='text/css'>
ul {
list-style: none;
}
li {
background: rgb(218, 191, 162);
padding: 3px;
width: 244px;
}
li.tmpPlaceholder {
background: rgb(110, 159, 128);
height: 22px;
}
</style>
</head>
<body>
<ul>
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
</ul>
</body>
</html>
|