揮発性のメモ2

http://d.hatena.ne.jp/iww/

選択禁止

右クリック禁止の次にやっかいな選択禁止

<style type="text/css">
body{
user-select:none;
-moz-user-select:none;
-webkit-user-select:none;
-webkit-user-drag:none;
-khtml-user-select:none;
-khtml-user-drag:none;
}

<body oncontextmenu='return false' onselectstart="return false">
</style>

こんなのがあるんだ、知らなかった