イベントの名前は、バインド時に異なるstart
ではなくsortstart
のように異なります。あなたのバインドがすべきであるものの完全なリストについては、Look at the list of events on the demo pageを参照してください。
全体的に、it should look like this:
$(".questions").bind("sortstop", function(event, ui) {
console.log("stop event");
});
$(".questions").bind("sortstart", function(event, ui) {
console.log("start event");
});
$(".questions").bind("sortchange", function(event, ui) {
console.log("change event");
});
$(".questions").bind("sort", function(event, ui) {
console.log("sort event");
});
$(".questions").bind("sortremove", function(event, ui) {
console.log("remove event");
});
$(".questions").bind("sortout", function(event, ui) {
console.log("out event");
});
$(".questions").bind("sortover", function(event, ui) {
console.log("over event");
});
$(".questions").bind("sortupdate", function(event, ui) {
console.log("update event");
});
(単なるイベント名を示す、最適化されていない)
http://docs.jquery.com/UI/Sortable#events - ここでは、バインドの例をご覧ください。 –