Permite ordenar elementos arrastrando y soltando. En el siguiente código fuente de ejemplo creamos una lista, permitiendo cambiar los elementos de posición:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>InformaticaPC | Ordenar elementos con JQuery UI</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body { background-color:lightyellow;font-family:Arial;font-size:10pt; }
#opciones li { height:30px;width:200px;margin:10px;list-style-type:none;background-color:lightgreen; }
</style>
<!-- Observa que agregamos también la librería JQuery UI -->
<script type="text/javascript" src="../lib/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="../lib/jquery-ui-1.10.1.custom.min.js"></script>
<!-- Agregamos también el archivo CSS del theme que usemos -->
<link type="text/css" rel="stylesheet" href="../lib/css/smoothness/jquery-ui-1.10.1.custom.css" />
<script type="text/javascript">
$(document).ready(function()
{
$("#opciones").sortable();
});
</script>
</head>
<body>
<p>Selecciona un elemento y arrástralo hacia otra posición:</p>
<ul id="opciones">
<li class="ui-state-default">Pedro</li>
<li class="ui-state-default">Julia</li>
<li class="ui-state-default">María</li>
<li class="ui-state-default">Francisco</li>
<li class="ui-state-default">Javier</li>
<li class="ui-state-default">Antonio</li>
</ul>
</body>
</html>

Vea también: [ Sortable ] - [ Sortable (doc) ] - [ sortable() ]