最後の行で Firebug がエラーをスローします。構文の問題だと思いますか?私は基本的にこのチュートリアルからコピーしていますが、なぜ機能しないのかわかりません。
TypeError: ui.draggable is not a function
[Break On This Error]
ui.draggable({ containment: 'body'});
コード:
function handleDropbox(event, ui) {
$(this).append(ui.draggable); // put this first!!!
ui.draggable.addClass( 'selected' );
$(this).droppable( 'disable' );
ui.draggable.position( { of: $(this), my: 'center center', at: 'center center' } );
ui.draggable.draggable( 'option', 'revert', false );
ui.draggable({ containment: 'parent'});
}