テキストを複製できなくするjavascript「jQuery Disable Text Select Plugin」

YouTubeなど、著作権がインターネット上でも問題になっています。
しかし、Webサイトはコピー&ペーストで簡単にテキストを複製することができてしまいます。
jQuery Disable Text Select Pluginは、テキストのコピー&ペーストを不可能にするjavascriptです。
*ソースは見られてしまうので、あくまでも一定の効果です。

使用方法

jQuery Disable Text Select Pluginからjquery.disable.text.select.jsを、jQueryからjquery.jsをダウンロードします。
あとは以下のようにhead内に記述します。
<script src="http://yourdomian/jquery.js" type="text/javascript"></script>
<script src="http://yourdomian/jquery.disable.text.select.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function() {
        $('.class名').disableTextSelect();
    });
</script>
そして、複製させたくない部分をclass名で囲めば完成です。
<div class="class名">
	コンテンツ
</div>

サンプル

このページ全体に指定しています。
Javascriptサンプルページ一覧
skuare.net