onselectstart="return false;"
HTMLページ にすでにあるときに、javascriptを使用して特定のdivを選択可能(コピー/貼り付け)にする方法を知っている人はいますか?
<head>
<script type="text/javascript">
function DisableSelection(){
var srcType = event ? ( event.srcElement ? event.srcElement.tagName: null ) : null;
if(srcType && ( srcType == "text" || srcType == "textarea" ) )
{
return true;
}
return false;
}
</script>
</head>
<body onContextMenu="return false" onselectstart="return DisableSelection();"/>