<ul id="box">
<li id="1">1</li>
<li id="2">2</li>
</ul>
$("#box").sortable({ update: function() {
var order = $("#box").sortable("serialize");
alert(order);
}
});
ソート可能を使用せずに順序変数でまったく同じ結果を得る方法は?