メモ。
■HTML
1 2 3 | < p id = "disable-selection" > テキスト </ p > |
■Javascript
1 2 3 | $( function (){ $( '#disable-selection' ).disableSelection(); }); |
これでマッチした要素集合のテキスト選択を無効にすることが出来る。
DragableやSortableと併せると、ユーザービリティ的にグッド。
メモ。
■HTML
1 2 3 | < p id = "disable-selection" > テキスト </ p > |
■Javascript
1 2 3 | $( function (){ $( '#disable-selection' ).disableSelection(); }); |
これでマッチした要素集合のテキスト選択を無効にすることが出来る。
DragableやSortableと併せると、ユーザービリティ的にグッド。