aleembの元の非常に支持された回答をcssにいくつか追加して更新するだけです。
以下のコンボを使用しています。
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
webkit-touchエントリを追加するための提案がありました:http ://phonegap-tips.com/articles/essential-phonegap-css-webkit-touch-callout.html
2015 4月:自分の回答を更新して、役立つバリエーションを追加します。DIVをその場で選択/選択解除できるようにする必要があり、Modernizrを使用したい場合は、次のコードがJavaScriptで適切に機能します。
var userSelectProp = Modernizr.prefixed('userSelect');
var specialDiv = document.querySelector('#specialDiv');
specialDiv.style[userSelectProp] = 'none';