Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
子供向けの小さなゲームで画像を並べ替えるために使用 $("#images").sortable(); していますが、並べ替え機能を削除したいと考えています。どうやってするか ??
$("#images").sortable();
これを試して
$( ".selector" ).sortable( "disable" );
解決策は、属性「destroy」で同じ関数を使用することでした
$( "#images" ).sortable('destroy');