Как защитить контент от копирования

Discussion in 'Проектирование' started by diki, Jun 28, 2012.

  1. Offline

    diki Недавно здесь

    Joined:
    Mar 9, 2011
    Messages:
    118
    Likes Received:
    0
    Gender:
    Male
    Подскажите пожалуйста Как защитить контент от копирования чтобы текст на страницы нельзя было выделить мышкой?
     
  2.  
  3. AKopytenko
    Offline

    AKopytenko Russian Joomla! Team Staff Member

    Joined:
    Sep 1, 2011
    Messages:
    1,963
    Likes Received:
    168
    Gender:
    Male
    Защитить от копирования - никак.
    Защитить от клика мышкой:

    Код (CODE):
    1. <script language=JavaScript>
    2. <!--
    3.     var message="Сообщение, выдаваемое при событии клика";
    4.     ///////////////////////////////////
    5.         function clickIE4() {
    6.             if (event.button==2) {
    7.                 alert(message);
    8.                 return false;
    9.             }
    10.         }
    11.         function clickNS4(e){
    12.             if (document.layers||document.getElementById&&!document.all) {
    13.                 if (e.which==2||e.which==3){
    14.                     alert(message);
    15.                     return false;
    16.                 }
    17.             }
    18.         }
    19.  
    20.         if (document.layers) {
    21.             document.captureEvents(Event.MOUSEDOWN);
    22.             document.onmousedown=clickNS4;
    23.         }
    24.         else if (document.all&&!document.getElementById){
    25.             document.onmousedown=clickIE4;
    26.         }
    27.  
    28.     document.oncontextmenu=new Function("alert(message);return false")
    29.  
    30. // -->
    31. </script>
     
  4. Offline

    diki Недавно здесь

    Joined:
    Mar 9, 2011
    Messages:
    118
    Likes Received:
    0
    Gender:
    Male
    куда именно этот скрипт вставлять?
     
  5. Vamp
    Offline

    Vamp Модератор => Cпециалист <=

    Joined:
    Jun 30, 2010
    Messages:
    282
    Likes Received:
    44
    Gender:
    Male
    В index.php шаблона , между тегами <head> и /head>
     

Share This Page

Loading...