Chrome Resources Files (chrome://resources/js/util.js) で見つけたこの関数を使用しており、Google Chrome でうまく機能しています。
/**
* Disables text selection and dragging.
*/
function disableTextSelectAndDrag() {
// Disable text selection.
document.onselectstart = function(e) {
e.preventDefault();
}
// Disable dragging.
document.ondragstart = function(e) {
e.preventDefault();
}
}
Internet Explorer 8 でこのイベントをキャンセルしたいのですが、うまくいきません。
IE8 でこのイベントをキャンセルするにはどうすればよいですか?