yevlakhov
8/13/2015 - 11:32 AM

No copy text

No copy text

<html>
  <head>
    <script type="text/javascript">
        function noMenu() {
            return false;
        }
        function killCopy(e){
            return false
        }
        function reEnable(){
            return true
        }
        document.onselectstart=new Function ("return false")
        if (window.sidebar){
            document.onmousedown=killCopy
            document.onclick=reEnable
        }
    </script>
</head>
<body>
    <p>
      some text - you can't copy one!
    </p>
</body>
</html>